mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
dotnetPackages.Nuget: fix runtime error
configurePhase breaks the binary and results in `File does not contain a valid CIL image.`
This commit is contained in:
parent
595a151776
commit
a015aaf1c9
1 changed files with 3 additions and 0 deletions
|
@ -296,6 +296,9 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; {
|
|||
sha256 = "07r63xam6icm17pf6amh1qkmna13nxa3ncdan7a3ql307i5isriz";
|
||||
};
|
||||
|
||||
# configurePhase breaks the binary and results in
|
||||
# `File does not contain a valid CIL image.`
|
||||
dontConfigure = true;
|
||||
dontBuild = true;
|
||||
|
||||
outputFiles = [ "*" ];
|
||||
|
|
Loading…
Reference in a new issue