summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-02-01 00:00:00 +0000
committerJan Malakhovski <oxij@oxij.org>2018-02-11 16:19:04 +0000
commita2cf5577c2397324eb7fe79b8e9d099c707eca9c (patch)
tree089e9d549865b222301e27fc55d91958b385c9f2 /pkgs/applications
parentad78e52357eb3df0f457c40185504567c7da524e (diff)
downloadnixlib-a2cf5577c2397324eb7fe79b8e9d099c707eca9c.tar
nixlib-a2cf5577c2397324eb7fe79b8e9d099c707eca9c.tar.gz
nixlib-a2cf5577c2397324eb7fe79b8e9d099c707eca9c.tar.bz2
nixlib-a2cf5577c2397324eb7fe79b8e9d099c707eca9c.tar.lz
nixlib-a2cf5577c2397324eb7fe79b8e9d099c707eca9c.tar.xz
nixlib-a2cf5577c2397324eb7fe79b8e9d099c707eca9c.tar.zst
nixlib-a2cf5577c2397324eb7fe79b8e9d099c707eca9c.zip
firefox: common: tiny cleanup
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/browsers/firefox/common.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/common.nix b/pkgs/applications/networking/browsers/firefox/common.nix
index 91b86a18375c..75153a9febda 100644
--- a/pkgs/applications/networking/browsers/firefox/common.nix
+++ b/pkgs/applications/networking/browsers/firefox/common.nix
@@ -59,7 +59,7 @@
 , enableOfficialBranding ? true
 }:
 
-assert stdenv.cc ? libc && stdenv.cc.libc != null;
+assert stdenv.cc.libc or null != null;
 
 let
   flag = tf: x: [(if tf then "--enable-${x}" else "--disable-${x}")];