mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
26 lines
494 B
Nix
26 lines
494 B
Nix
|
{ stdenv, nitrokey-app
|
||
|
, group ? "nitrokey"
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "nitrokey-udev-rules";
|
||
|
|
||
|
inherit (nitrokey-app) src;
|
||
|
|
||
|
dontBuild = true;
|
||
|
|
||
|
patchPhase = ''
|
||
|
substituteInPlace data/41-nitrokey.rules --replace plugdev "${group}"
|
||
|
'';
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/etc/udev/rules.d
|
||
|
cp data/41-nitrokey.rules $out/etc/udev/rules.d
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "udev rules for Nitrokeys";
|
||
|
inherit (nitrokey-app.meta) homepage license maintainers;
|
||
|
};
|
||
|
}
|