1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #55741 from asymmetric/ledger

nixos/ledger: init
This commit is contained in:
Ryan Mulligan 2019-02-22 11:10:32 -08:00 committed by GitHub
commit 8c4ce1a106
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 46 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -44,6 +44,7 @@
./hardware/digitalbitbox.nix
./hardware/sensor/iio.nix
./hardware/ksm.nix
./hardware/ledger.nix
./hardware/mcelog.nix
./hardware/network/b43.nix
./hardware/nitrokey.nix

View 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;
};
}

View file

@ -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