commit
8c4ce1a106
|
@ -0,0 +1,14 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.hardware.ledger;
|
||||||
|
|
||||||
|
in {
|
||||||
|
options.hardware.ledger.enable = mkEnableOption "udev rules for Ledger devices";
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
services.udev.packages = [ pkgs.ledger-udev-rules ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -44,6 +44,7 @@
|
||||||
./hardware/digitalbitbox.nix
|
./hardware/digitalbitbox.nix
|
||||||
./hardware/sensor/iio.nix
|
./hardware/sensor/iio.nix
|
||||||
./hardware/ksm.nix
|
./hardware/ksm.nix
|
||||||
|
./hardware/ledger.nix
|
||||||
./hardware/mcelog.nix
|
./hardware/mcelog.nix
|
||||||
./hardware/network/b43.nix
|
./hardware/network/b43.nix
|
||||||
./hardware/nitrokey.nix
|
./hardware/nitrokey.nix
|
||||||
|
|
|
@ -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 {};
|
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 { })
|
inherit (callPackages ../data/fonts/redhat-liberation-fonts { })
|
||||||
liberation_ttf_v1
|
liberation_ttf_v1
|
||||||
liberation_ttf_v2
|
liberation_ttf_v2
|
||||||
|
|
Loading…
Reference in New Issue