summary refs log tree commit diff
path: root/pkgs/top-level/dotnet-packages.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-21 00:05:28 +0000
committerGitHub <noreply@github.com>2021-07-21 00:05:28 +0000
commit8a3580c2f60ab204ea35562eaae8313e0fe0ce12 (patch)
treeab5331a9b9a64353a4daf15ad9908218bf303351 /pkgs/top-level/dotnet-packages.nix
parentfef688899e5882f13efb5f01d54febad37023252 (diff)
parent4218023470e5d24f3f571963ba54c74327e6c1fe (diff)
downloadnixpkgs-8a3580c2f60ab204ea35562eaae8313e0fe0ce12.tar
nixpkgs-8a3580c2f60ab204ea35562eaae8313e0fe0ce12.tar.gz
nixpkgs-8a3580c2f60ab204ea35562eaae8313e0fe0ce12.tar.bz2
nixpkgs-8a3580c2f60ab204ea35562eaae8313e0fe0ce12.tar.lz
nixpkgs-8a3580c2f60ab204ea35562eaae8313e0fe0ce12.tar.xz
nixpkgs-8a3580c2f60ab204ea35562eaae8313e0fe0ce12.tar.zst
nixpkgs-8a3580c2f60ab204ea35562eaae8313e0fe0ce12.zip
Merge master into haskell-updates
Diffstat (limited to 'pkgs/top-level/dotnet-packages.nix')
-rw-r--r--pkgs/top-level/dotnet-packages.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix
index 6a189c0005a..06d7693006b 100644
--- a/pkgs/top-level/dotnet-packages.nix
+++ b/pkgs/top-level/dotnet-packages.nix
@@ -296,7 +296,10 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; {
       sha256 = "07r63xam6icm17pf6amh1qkmna13nxa3ncdan7a3ql307i5isriz";
     };
 
-    phases = [ "unpackPhase" "installPhase" ];
+    # configurePhase breaks the binary and results in
+    # `File does not contain a valid CIL image.`
+    dontConfigure = true;
+    dontBuild = true;
 
     outputFiles = [ "*" ];
     dllFiles = [ "NuGet*.dll" ];