nixpkgs/pkgs/kde/plasma/kwallet-pam/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
240 B
Nix
Raw Normal View History

{
lib,
mkKdeDerivation,
pam,
libgcrypt,
socat,
}:
mkKdeDerivation {
pname = "kwallet-pam";
postPatch = ''
sed -i pam_kwallet_init -e "s|socat|${lib.getBin socat}/bin/socat|"
'';
extraBuildInputs = [pam libgcrypt];
}