summary refs log tree commit diff
diff options
context:
space:
mode:
authorBenjamin Staffin <benley@gmail.com>2015-12-09 00:48:15 -0800
committerBenjamin Staffin <benley@gmail.com>2015-12-09 00:48:15 -0800
commit8d3b318c42ac28997edb3f4a6875d36228328791 (patch)
treebc348bbdf6746e0eef06b77db23e8915653f61d7
parenta190cb7636ff57737fae695c043805f1536aaefe (diff)
downloadnixpkgs-8d3b318c42ac28997edb3f4a6875d36228328791.tar
nixpkgs-8d3b318c42ac28997edb3f4a6875d36228328791.tar.gz
nixpkgs-8d3b318c42ac28997edb3f4a6875d36228328791.tar.bz2
nixpkgs-8d3b318c42ac28997edb3f4a6875d36228328791.tar.lz
nixpkgs-8d3b318c42ac28997edb3f4a6875d36228328791.tar.xz
nixpkgs-8d3b318c42ac28997edb3f4a6875d36228328791.tar.zst
nixpkgs-8d3b318c42ac28997edb3f4a6875d36228328791.zip
closure-compiler: allow building on darwin
Near as I can tell it works fine.
-rw-r--r--pkgs/development/compilers/closure/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/closure/default.nix b/pkgs/development/compilers/closure/default.nix
index e94cbeae37f..1c684c21bf4 100644
--- a/pkgs/development/compilers/closure/default.nix
+++ b/pkgs/development/compilers/closure/default.nix
@@ -26,6 +26,6 @@ stdenv.mkDerivation rec {
     description = "A tool for making JavaScript download and run faster";
     homepage = https://developers.google.com/closure/compiler/;
     license = stdenv.lib.licenses.asl20;
-    platforms = stdenv.lib.platforms.linux;
+    platforms = stdenv.lib.platforms.unix;
   };
 }