2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2019-02-18 21:42:59 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-02-18 21:42:59 +00:00
|
|
|
pname = "ledger-udev-rules";
|
2019-11-01 15:18:41 +00:00
|
|
|
version = "unstable-2019-05-30";
|
2019-02-18 21:42:59 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "LedgerHQ";
|
|
|
|
repo = "udev-rules";
|
2019-11-01 15:18:41 +00:00
|
|
|
rev = "765b7fdf57b20fd9326cedf48ee52e905024ab4f";
|
|
|
|
sha256 = "10a42al020zpkx918y6b1l9az45vk3921b2l1mx87w3m0ad9qvif";
|
2019-02-18 21:42:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
dontConfigure = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/lib/udev/rules.d
|
|
|
|
cp 20-hw1.rules $out/lib/udev/rules.d/20-ledger.rules
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-02-18 21:42:59 +00:00
|
|
|
description = "udev rules for Ledger devices";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ asymmetric ];
|
|
|
|
platforms = platforms.linux;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/LedgerHQ/udev-rules";
|
2019-02-18 21:42:59 +00:00
|
|
|
};
|
|
|
|
}
|