mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
12 lines
197 B
Nix
12 lines
197 B
Nix
{ plasmaPackage, extra-cmake-modules, pam, socat, libgcrypt
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "kwallet-pam";
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
|
|
buildInputs = [ pam socat libgcrypt ];
|
|
|
|
}
|