about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/kwallet-pam.nix
blob: b4fd032cf1f794a2e4b48c7c382471f8679ab493 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ mkDerivation, lib, extra-cmake-modules, pam, socat, libgcrypt, qtbase, kwallet, }:

mkDerivation {
  name = "kwallet-pam";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ pam socat libgcrypt qtbase kwallet ];
  postPatch = ''
    sed -i pam_kwallet_init -e "s|socat|${lib.getBin socat}/bin/socat|"
  '';
}