summary refs log tree commit diff
path: root/pkgs/os-specific/linux/lxcfs
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@higgsboson.tk>2017-11-07 11:01:42 +0000
committerJörg Thalheim <joerg@higgsboson.tk>2017-11-07 11:04:05 +0000
commit84f40186b2c55ac28b2ab6e40e618d412f042b95 (patch)
tree8d6a57897016df57ba91f1ab470ef066dc1973d3 /pkgs/os-specific/linux/lxcfs
parentc75c99f42e5a4d77839374e2a64977efd9590206 (diff)
downloadnixpkgs-84f40186b2c55ac28b2ab6e40e618d412f042b95.tar
nixpkgs-84f40186b2c55ac28b2ab6e40e618d412f042b95.tar.gz
nixpkgs-84f40186b2c55ac28b2ab6e40e618d412f042b95.tar.bz2
nixpkgs-84f40186b2c55ac28b2ab6e40e618d412f042b95.tar.lz
nixpkgs-84f40186b2c55ac28b2ab6e40e618d412f042b95.tar.xz
nixpkgs-84f40186b2c55ac28b2ab6e40e618d412f042b95.tar.zst
nixpkgs-84f40186b2c55ac28b2ab6e40e618d412f042b95.zip
lxcfs: do not inherit enableDebugBuild from global namespace
Diffstat (limited to 'pkgs/os-specific/linux/lxcfs')
-rw-r--r--pkgs/os-specific/linux/lxcfs/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/lxcfs/default.nix b/pkgs/os-specific/linux/lxcfs/default.nix
index 8a6b2f8ca8a..4f62b7eb128 100644
--- a/pkgs/os-specific/linux/lxcfs/default.nix
+++ b/pkgs/os-specific/linux/lxcfs/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, help2man, fuse, pam,
-  debugBuild ? false }:
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, help2man, fuse, pam
+, enableDebugBuild ? false }:
 
 with stdenv.lib;
 stdenv.mkDerivation rec {
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
   buildInputs = [ fuse pam ];
 
-  preConfigure = stdenv.lib.optionalString debugBuild ''
+  preConfigure = stdenv.lib.optionalString enableDebugBuild ''
     sed -i 's,#AM_CFLAGS += -DDEBUG,AM_CFLAGS += -DDEBUG,' Makefile.am
   '';