2016-01-13 17:01:29 +00:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
2015-02-04 20:09:18 +00:00
|
|
|
|
2016-03-03 12:37:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "android-udev-rules-${version}";
|
2016-08-13 00:17:18 +00:00
|
|
|
version = "20160805";
|
2015-02-04 20:09:18 +00:00
|
|
|
|
2016-01-13 17:01:29 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "M0Rf30";
|
|
|
|
repo = "android-udev-rules";
|
2016-08-13 00:17:18 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "0sdf3insqs73cdzmwl3lqy7nj82f1lprxd3vm0jh3qpf0sd1k93c";
|
2015-02-04 20:09:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -D 51-android.rules $out/lib/udev/rules.d/51-android.rules
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-08-13 00:17:18 +00:00
|
|
|
homepage = "https://github.com/M0Rf30/android-udev-rules";
|
2015-02-04 20:09:18 +00:00
|
|
|
description = "Android udev rules list aimed to be the most comprehensive on the net";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|