make llvm-3.5 the default and remove references to gccApple

make perl be less dumb

revert change to release.nix
This commit is contained in:
Eric Seidel
2015-02-03 14:31:04 -08:00
parent ebb8d03f96
commit dbf3d31727
4 changed files with 69 additions and 109 deletions
@@ -0,0 +1,17 @@
{ stdenv }:
assert stdenv.isDarwin;
stdenv.mkDerivation {
name = "libunwind-native";
unpackPhase = ":";
dontBuild = true;
installPhase = ''
mkdir -p $out/lib
cat /usr/lib/system/libunwind.dylib > $out/lib/libunwind.dylib
'';
meta.platforms = stdenv.lib.platforms.darwin;
}