Files

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

22 lines
309 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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
];
}