about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-08-06 17:05:12 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-08-06 17:06:45 +0300
commitea14f5c86dd1e28e4cf367c311353efb713e1a9e (patch)
tree3b6b4efa6413979421e311e83bb4773e2212bc99 /pkgs
parent4f398dfd1389f88ee9243bb9afdf8eb3a7f0721b (diff)
downloadnixlib-ea14f5c86dd1e28e4cf367c311353efb713e1a9e.tar
nixlib-ea14f5c86dd1e28e4cf367c311353efb713e1a9e.tar.gz
nixlib-ea14f5c86dd1e28e4cf367c311353efb713e1a9e.tar.bz2
nixlib-ea14f5c86dd1e28e4cf367c311353efb713e1a9e.tar.lz
nixlib-ea14f5c86dd1e28e4cf367c311353efb713e1a9e.tar.xz
nixlib-ea14f5c86dd1e28e4cf367c311353efb713e1a9e.tar.zst
nixlib-ea14f5c86dd1e28e4cf367c311353efb713e1a9e.zip
http-parser: Broken on Darwin
http://hydra.nixos.org/build/38320273
Diffstat (limited to 'pkgs')
-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 e8a8ecee95e4..df3f68b12493 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.unix;
+    platforms = stdenv.lib.platforms.linux; # Broken on pure-darwin, wants xcode
   };
 }