summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2016-08-30 20:13:27 -0400
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2016-09-17 16:32:37 -0400
commitd7f22f96b08a440613b14c90bd382706101af934 (patch)
tree504328f8a14880adf05889a5d12c1b19b0e877d8 /pkgs
parent5f6d842ab13290b4c2b8a1fb1bf433b32409d161 (diff)
downloadnixpkgs-d7f22f96b08a440613b14c90bd382706101af934.tar
nixpkgs-d7f22f96b08a440613b14c90bd382706101af934.tar.gz
nixpkgs-d7f22f96b08a440613b14c90bd382706101af934.tar.bz2
nixpkgs-d7f22f96b08a440613b14c90bd382706101af934.tar.lz
nixpkgs-d7f22f96b08a440613b14c90bd382706101af934.tar.xz
nixpkgs-d7f22f96b08a440613b14c90bd382706101af934.tar.zst
nixpkgs-d7f22f96b08a440613b14c90bd382706101af934.zip
ccache: enable build on macOS
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/ccache/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix
index f538c213892..215d6ee2f0a 100644
--- a/pkgs/development/tools/misc/ccache/default.nix
+++ b/pkgs/development/tools/misc/ccache/default.nix
@@ -15,7 +15,7 @@ let ccache = stdenv.mkDerivation rec {
     substituteInPlace Makefile.in --replace 'objs) $(extra_libs)' 'objs)'
   '';
 
-  doCheck = true;
+  doCheck = !stdenv.isDarwin;
 
   passthru = {
     # A derivation that provides gcc and g++ commands, but that
@@ -63,7 +63,7 @@ let ccache = stdenv.mkDerivation rec {
     downloadPage = https://ccache.samba.org/download.html;
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ nckx ];
-    platforms = with platforms; linux;
+    platforms = platforms.unix;
   };
 };
 in ccache