Skip to content

Commit 85de798

Browse files
authored
Merge pull request #326703 from corngood/dotnet-darwin-fix
dotnet: use dwarfdump from cctools-llvm
2 parents 3a81f51 + 77bc200 commit 85de798

File tree

1 file changed

+2
-2
lines changed
  • pkgs/development/compilers/dotnet

1 file changed

+2
-2
lines changed

pkgs/development/compilers/dotnet/vmr.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ let
4141
isDarwin
4242
buildPlatform
4343
targetPlatform;
44-
inherit (darwin) cctools;
44+
inherit (darwin) cctools-llvm;
4545
inherit (swiftPackages) apple_sdk swift;
4646

4747
releaseManifest = lib.importJSON releaseManifestFile;
@@ -59,7 +59,7 @@ let
5959
dontUnpack = true;
6060
installPhase = ''
6161
mkdir -p "$out/bin"
62-
ln -s "${cctools}/bin/dwarfdump" "$out/bin"
62+
ln -s "${cctools-llvm}/bin/dwarfdump" "$out/bin"
6363
'';
6464
};
6565

0 commit comments

Comments
 (0)