summary refs log tree commit diff
path: root/pkgs/development/libraries/http-parser
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2016-10-31 09:30:39 -0400
committerGraham Christensen <graham@grahamc.com>2016-10-31 09:30:39 -0400
commit5022978474c8a4dc88c691d0205992c7cd2ce4c8 (patch)
treefa23497ceeaa3bb32209316da7f1069bd15f8aa5 /pkgs/development/libraries/http-parser
parentb0bc029f803eb0e2737248e7c9da54705ce044ef (diff)
downloadnixpkgs-5022978474c8a4dc88c691d0205992c7cd2ce4c8.tar
nixpkgs-5022978474c8a4dc88c691d0205992c7cd2ce4c8.tar.gz
nixpkgs-5022978474c8a4dc88c691d0205992c7cd2ce4c8.tar.bz2
nixpkgs-5022978474c8a4dc88c691d0205992c7cd2ce4c8.tar.lz
nixpkgs-5022978474c8a4dc88c691d0205992c7cd2ce4c8.tar.xz
nixpkgs-5022978474c8a4dc88c691d0205992c7cd2ce4c8.tar.zst
nixpkgs-5022978474c8a4dc88c691d0205992c7cd2ce4c8.zip
Revert "http-parser: Broken on Darwin"
This reverts commit ea14f5c86dd1e28e4cf367c311353efb713e1a9e.

LnL on IRC says it builds without without CommandLineTools, and
disabling this on darwin breaks large swaths of packages. In
particular we're seeing all of rust broken.

We're not sure why it was broken on hydra, but we're pretty sure
disabling it straight out was the wrong fix.
Diffstat (limited to 'pkgs/development/libraries/http-parser')
-rw-r--r--pkgs/development/libraries/http-parser/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/http-parser/default.nix b/pkgs/development/libraries/http-parser/default.nix
index 980dd1f18a2..60a1435462b 100644
--- a/pkgs/development/libraries/http-parser/default.nix
+++ b/pkgs/development/libraries/http-parser/default.nix
@@ -42,6 +42,6 @@ in stdenv.mkDerivation {
     homepage = https://github.com/joyent/http-parser;
 
     license = stdenv.lib.licenses.mit;
-    platforms = stdenv.lib.platforms.linux; # Broken on pure-darwin, wants xcode
+    platforms = stdenv.lib.platforms.unix;
   };
 }