summary refs log tree commit diff
path: root/pkgs/development/libraries/libunwind/native.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/libunwind/native.nix')
-rw-r--r--pkgs/development/libraries/libunwind/native.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/development/libraries/libunwind/native.nix b/pkgs/development/libraries/libunwind/native.nix
deleted file mode 100644
index 6ce485ecaec0..000000000000
--- a/pkgs/development/libraries/libunwind/native.nix
+++ /dev/null
@@ -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;
-}