mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
android-udev-rules: add package
This commit is contained in:
parent
fe07c77ff1
commit
104d7e7e62
23
pkgs/os-specific/linux/android-udev-rules/default.nix
Normal file
23
pkgs/os-specific/linux/android-udev-rules/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, fetchgit }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "android-udev-rules";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "git://github.com/M0Rf30/android-udev-rules";
|
||||||
|
rev = "82f78561f388363a925e6663211988d9527de0c6";
|
||||||
|
sha256 = "badd7a152acf92c75335917c07125ffb1b5fda0bed5ec1e474d76e48a8d9f0db";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -D 51-android.rules $out/lib/udev/rules.d/51-android.rules
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/M0Rf30/android-udev-rules;
|
||||||
|
description = "Android udev rules list aimed to be the most comprehensive on the net";
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ abbradar ];
|
||||||
|
};
|
||||||
|
}
|
@ -9146,6 +9146,8 @@ let
|
|||||||
|
|
||||||
andagii = callPackage ../data/fonts/andagii { };
|
andagii = callPackage ../data/fonts/andagii { };
|
||||||
|
|
||||||
|
android-udev-rules = callPackage ../os-specific/linux/android-udev-rules { };
|
||||||
|
|
||||||
anonymousPro = callPackage ../data/fonts/anonymous-pro { };
|
anonymousPro = callPackage ../data/fonts/anonymous-pro { };
|
||||||
|
|
||||||
arkpandora_ttf = builderDefsPackage (import ../data/fonts/arkpandora) { };
|
arkpandora_ttf = builderDefsPackage (import ../data/fonts/arkpandora) { };
|
||||||
|
Loading…
Reference in New Issue
Block a user