From ea14f5c86dd1e28e4cf367c311353efb713e1a9e Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 6 Aug 2016 17:05:12 +0300 Subject: [PATCH] http-parser: Broken on Darwin http://hydra.nixos.org/build/38320273 --- pkgs/development/libraries/http-parser/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }; }