remove obsolete libunwindNative

This commit is contained in:
Jude Taylor
2015-10-01 16:34:37 -07:00
parent d4081c2f97
commit 07d9b3cded
2 changed files with 1 additions and 20 deletions

View File

@@ -1,17 +0,0 @@
{ 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;
}