From 4e5ba7e9971020bcd147d25c31f7e85cddafa8bd Mon Sep 17 00:00:00 2001 From: David McFarland Date: Sat, 4 Jan 2025 21:05:32 -0400 Subject: [PATCH] dotnet: include sdk name in test names --- pkgs/development/compilers/dotnet/wrapper.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/dotnet/wrapper.nix b/pkgs/development/compilers/dotnet/wrapper.nix index 0c97ea6af39b..d328dbf97b7e 100644 --- a/pkgs/development/compilers/dotnet/wrapper.nix +++ b/pkgs/development/compilers/dotnet/wrapper.nix @@ -104,7 +104,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { let sdk = finalAttrs.finalPackage; built = stdenv.mkDerivation { - name = "dotnet-test-${name}"; + name = "${sdk.name}-test-${name}"; buildInputs = [ sdk ] ++ buildInputs ++ lib.optional (usePackageSource) sdk.packages; # make sure ICU works in a sandbox propagatedSandboxProfile = toString sdk.__propagatedSandboxProfile;