From 5022978474c8a4dc88c691d0205992c7cd2ce4c8 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 31 Oct 2016 09:30:39 -0400 Subject: [PATCH] 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. --- 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 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; }; }