forked from mirrors/nixpkgs
Merge pull request #130951 from Mic92/nuget
dotnetPackages.Nuget: 4.9.1 -> 5.6.0.6489 [fixes current build]
This commit is contained in:
commit
286b39a505
|
@ -285,24 +285,24 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; {
|
|||
outputFiles = [ "*" ];
|
||||
};
|
||||
|
||||
Nuget = buildDotnetPackage {
|
||||
Nuget = buildDotnetPackage rec {
|
||||
baseName = "Nuget";
|
||||
version = "4.9.1";
|
||||
version = "5.6.0.6489";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mono";
|
||||
repo = "nuget-binary";
|
||||
rev = "7871fa26914593fdb2f2500df1196df7b8aecb1c";
|
||||
sha256 = "07r63xam6icm17pf6amh1qkmna13nxa3ncdan7a3ql307i5isriz";
|
||||
repo = "linux-packaging-nuget";
|
||||
rev = "upstream/${version}.bin";
|
||||
sha256 = "sha256-71vjM7a+F0DNTY+dML3UBSkrVyXv/k5rdl7iXBKSpNM=";
|
||||
};
|
||||
|
||||
# configurePhase breaks the binary and results in
|
||||
# `File does not contain a valid CIL image.`
|
||||
dontConfigure = true;
|
||||
dontBuild = true;
|
||||
dontPlacateNuget = true;
|
||||
|
||||
outputFiles = [ "*" ];
|
||||
dllFiles = [ "NuGet*.dll" ];
|
||||
exeFiles = [ "nuget.exe" ];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue