summary refs log tree commit diff
path: root/pkgs/os-specific/linux/lxcfs/default.nix
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-04-09 08:13:23 +0100
committerJörg Thalheim <joerg@thalheim.io>2018-04-09 08:15:00 +0100
commite8cfda7f13d88f80253951edcb4c944972ba4b2c (patch)
treeed5cc3239fcb6a6d067e5b89a04ac07023646872 /pkgs/os-specific/linux/lxcfs/default.nix
parent8f9b21212d411e75a73585175b87cbc60aa0c983 (diff)
downloadnixpkgs-e8cfda7f13d88f80253951edcb4c944972ba4b2c.tar
nixpkgs-e8cfda7f13d88f80253951edcb4c944972ba4b2c.tar.gz
nixpkgs-e8cfda7f13d88f80253951edcb4c944972ba4b2c.tar.bz2
nixpkgs-e8cfda7f13d88f80253951edcb4c944972ba4b2c.tar.lz
nixpkgs-e8cfda7f13d88f80253951edcb4c944972ba4b2c.tar.xz
nixpkgs-e8cfda7f13d88f80253951edcb4c944972ba4b2c.tar.zst
nixpkgs-e8cfda7f13d88f80253951edcb4c944972ba4b2c.zip
lxc: enable pam_cgfs and fix module
pam_cgfs was part in lxcfs before and moved here

fixes #37985
Diffstat (limited to 'pkgs/os-specific/linux/lxcfs/default.nix')
-rw-r--r--pkgs/os-specific/linux/lxcfs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/lxcfs/default.nix b/pkgs/os-specific/linux/lxcfs/default.nix
index 8c381877fdc..6f7dd2f56ff 100644
--- a/pkgs/os-specific/linux/lxcfs/default.nix
+++ b/pkgs/os-specific/linux/lxcfs/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, help2man, fuse, pam
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, help2man, fuse
 , enableDebugBuild ? false }:
 
 with stdenv.lib;
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
-  buildInputs = [ fuse pam ];
+  buildInputs = [ fuse ];
 
   preConfigure = stdenv.lib.optionalString enableDebugBuild ''
     sed -i 's,#AM_CFLAGS += -DDEBUG,AM_CFLAGS += -DDEBUG,' Makefile.am