Skip to content

Commit 77bc200

Browse files
committed
dotnet: use dwarfdump from cctools-llvm
At some point cctools changed from cctools-llvm to cctools-port, and this broke dotnet.
1 parent 514d22d commit 77bc200

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)