forked from mirrors/nixpkgs
ledger-udev-rules: init at unstable-2019-02-13
This commit is contained in:
parent
8f0cba10a6
commit
04cb60bc86
29
pkgs/os-specific/linux/ledger-udev-rules/default.nix
Normal file
29
pkgs/os-specific/linux/ledger-udev-rules/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ledger-udev-rules";
|
||||
version = "unstable-2019-02-13";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "LedgerHQ";
|
||||
repo = "udev-rules";
|
||||
rev = "20cc1651eb551c4855aaa56628c77eaeb3031c22";
|
||||
sha256 = "0riydkc4in10pv4qlrvbg3w78qsvxly5caa3zwyqcmsm5fmprqky";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
dontConfigure = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/lib/udev/rules.d
|
||||
cp 20-hw1.rules $out/lib/udev/rules.d/20-ledger.rules
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "udev rules for Ledger devices";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ asymmetric ];
|
||||
platforms = platforms.linux;
|
||||
homepage = https://github.com/LedgerHQ/udev-rules;
|
||||
};
|
||||
}
|
|
@ -15634,6 +15634,8 @@ in
|
|||
|
||||
league-of-moveable-type = callPackage ../data/fonts/league-of-moveable-type {};
|
||||
|
||||
ledger-udev-rules = callPackage ../os-specific/linux/ledger-udev-rules {};
|
||||
|
||||
inherit (callPackages ../data/fonts/redhat-liberation-fonts { })
|
||||
liberation_ttf_v1
|
||||
liberation_ttf_v2
|
||||
|
|
Loading…
Reference in a new issue