2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2015-02-04 20:09:18 +00:00
|
|
|
|
2016-08-29 22:39:23 +01:00
|
|
|
## Usage
|
|
|
|
# In NixOS, simply add this package to services.udev.packages:
|
|
|
|
# services.udev.packages = [ pkgs.android-udev-rules ];
|
|
|
|
|
2016-03-03 12:37:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "android-udev-rules";
|
2020-10-29 08:31:05 +00:00
|
|
|
version = "20201003";
|
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 01:17:18 +01:00
|
|
|
rev = version;
|
2020-10-29 08:31:05 +00:00
|
|
|
sha256 = "07s5fdjbk5q4km6gz9759ngdavrqdgbnkd2b7z9z5lqw1q0b2422";
|
2015-02-04 20:09:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -D 51-android.rules $out/lib/udev/rules.d/51-android.rules
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-11 19:24:40 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|