Revert "http-parser: Broken on Darwin"

This reverts commit ea14f5c86d.

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.
This commit is contained in:
Graham Christensen 2016-10-31 09:30:39 -04:00
parent b0bc029f80
commit 5022978474
No known key found for this signature in database
GPG Key ID: ACA1C1D120C83D5C

View File

@ -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;
};
}