summary refs log tree commit diff
path: root/pkgs/os-specific/linux/pam/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2022-01-27 10:10:23 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-01-28 13:33:44 -0800
commitfd8f6de4b8415fe4dcea3a9cbb9ab9eebd37b53a (patch)
tree2aca6bbc291791a60351eab5de39a8845a449d9c /pkgs/os-specific/linux/pam/default.nix
parenta10d11b59f33f355cb3324994f49160e812d1b42 (diff)
downloadnixpkgs-fd8f6de4b8415fe4dcea3a9cbb9ab9eebd37b53a.tar
nixpkgs-fd8f6de4b8415fe4dcea3a9cbb9ab9eebd37b53a.tar.gz
nixpkgs-fd8f6de4b8415fe4dcea3a9cbb9ab9eebd37b53a.tar.bz2
nixpkgs-fd8f6de4b8415fe4dcea3a9cbb9ab9eebd37b53a.tar.lz
nixpkgs-fd8f6de4b8415fe4dcea3a9cbb9ab9eebd37b53a.tar.xz
nixpkgs-fd8f6de4b8415fe4dcea3a9cbb9ab9eebd37b53a.tar.zst
nixpkgs-fd8f6de4b8415fe4dcea3a9cbb9ab9eebd37b53a.zip
linux-pam: make it use SUID wrapped version of unix_ckpwd
Diffstat (limited to 'pkgs/os-specific/linux/pam/default.nix')
-rw-r--r--pkgs/os-specific/linux/pam/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/pam/default.nix b/pkgs/os-specific/linux/pam/default.nix
index 33ab4f784fc..65bf01aa4cf 100644
--- a/pkgs/os-specific/linux/pam/default.nix
+++ b/pkgs/os-specific/linux/pam/default.nix
@@ -12,6 +12,8 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-IB1AcwsRNbGzzeoJ8sKKxjTXMYHM0Bcs7d7jZJxXkvw=";
   };
 
+  patches = [ ./suid-wrapper-path.patch ];
+
   outputs = [ "out" "doc" "man" /* "modules" */ ];
 
   depsBuildBuild = [ buildPackages.stdenv.cc ];