aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/gamin
diff options
context:
space:
mode:
authorEric Seidel <gridaphobe@gmail.com>2015-05-11 14:37:53 -0700
committerEric Seidel <gridaphobe@gmail.com>2015-05-11 14:44:50 -0700
commit662a6b1ca62b2e44115f6e29999f30896ddfa075 (patch)
treede5c2d6b8130d3e1d9c89038c32a22eef2bf423a /pkgs/development/libraries/gamin
parent395829686d0219b3e14fe6ffae60a24b4e50370b (diff)
remove all references to `stdenv.cc.cc.is{GNU,Clang}`
use the new `stdenv.cc.is{GNU,Clang}` instead, which will always be defined.
Diffstat (limited to 'pkgs/development/libraries/gamin')
-rw-r--r--pkgs/development/libraries/gamin/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/gamin/default.nix b/pkgs/development/libraries/gamin/default.nix
index 0b22aa501e64..e6b1875a9e0c 100644
--- a/pkgs/development/libraries/gamin/default.nix
+++ b/pkgs/development/libraries/gamin/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation (rec {
patches = [ ./deadlock.patch ]
++ map fetchurl (import ./debian-patches.nix)
- ++ stdenv.lib.optional (stdenv.cc.cc.isClang or false) ./returnval.patch;
+ ++ stdenv.lib.optional stdenv.cc.isClang ./returnval.patch;
meta = with stdenv.lib; {