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

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