4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
30 lines
744 B
Nix
30 lines
744 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "ledger-udev-rules";
|
|
version = "unstable-2019-05-30";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LedgerHQ";
|
|
repo = "udev-rules";
|
|
rev = "765b7fdf57b20fd9326cedf48ee52e905024ab4f";
|
|
sha256 = "10a42al020zpkx918y6b1l9az45vk3921b2l1mx87w3m0ad9qvif";
|
|
};
|
|
|
|
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 lib; {
|
|
description = "udev rules for Ledger devices";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ asymmetric ];
|
|
platforms = platforms.linux;
|
|
homepage = "https://github.com/LedgerHQ/udev-rules";
|
|
};
|
|
}
|