mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 08:23:25 +00:00
18 lines
298 B
Nix
18 lines
298 B
Nix
|
{ 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;
|
||
|
}
|