mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 10:34:16 +00:00
22 lines
309 B
Nix
22 lines
309 B
Nix
{
|
|
lib,
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
pam,
|
|
libgcrypt,
|
|
socat,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kwallet-pam";
|
|
|
|
postPatch = ''
|
|
sed -i pam_kwallet_init -e "s|socat|${lib.getBin socat}/bin/socat|"
|
|
'';
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
pam
|
|
libgcrypt
|
|
];
|
|
}
|