mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
12 lines
165 B
Nix
12 lines
165 B
Nix
|
{ plasmaPackage, ecm, pam, socat, libgcrypt
|
||
|
}:
|
||
|
|
||
|
plasmaPackage {
|
||
|
name = "kwallet-pam";
|
||
|
|
||
|
nativeBuildInputs = [ ecm ];
|
||
|
|
||
|
buildInputs = [ pam socat libgcrypt ];
|
||
|
|
||
|
}
|