about summary refs log tree commit diff
path: root/pkgs/applications/editors/nedit/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/nedit/default.nix')
-rw-r--r--pkgs/applications/editors/nedit/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/nedit/default.nix b/pkgs/applications/editors/nedit/default.nix
index feaba31734c2c..5a523c05d7959 100644
--- a/pkgs/applications/editors/nedit/default.nix
+++ b/pkgs/applications/editors/nedit/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ motif libXpm ];
 
   # the linux config works fine on darwin too!
-  buildFlags = stdenv.lib.optional (stdenv.isLinux || stdenv.isDarwin) "linux";
+  buildFlags = lib.optional (stdenv.isLinux || stdenv.isDarwin) "linux";
 
   NIX_CFLAGS_COMPILE="-DBUILD_UNTESTED_NEDIT -L${motif}/lib";