scarab: 2.5.0.0 -> 2.6.0.0 (#362727)

This commit is contained in:
Aleksana
2024-12-08 14:20:57 +08:00
committed by GitHub
2 changed files with 1319 additions and 286 deletions
+1317 -273
View File
File diff suppressed because it is too large Load Diff
+2 -13
View File
@@ -11,13 +11,13 @@
buildDotnetModule rec {
pname = "scarab";
version = "2.5.0.0";
version = "2.6.0.0";
src = fetchFromGitHub {
owner = "fifty-six";
repo = "scarab";
rev = "refs/tags/v${version}";
hash = "sha256-z1hmMrfeoYyjVEPPjWvUfKUKsOS7UsocSWMYrFY+/kI=";
hash = "sha256-xnvS3FDY4hi3yauwoSzO1fO6tJJAwFCkAc0Wzfs/puQ=";
};
dotnet-sdk = dotnetCorePackages.sdk_8_0;
@@ -26,17 +26,6 @@ buildDotnetModule rec {
testProjectFile = "Scarab.Tests/Scarab.Tests.csproj";
executables = [ "Scarab" ];
postPatch = ''
substituteInPlace Scarab/Scarab.csproj Scarab.Tests/Scarab.Tests.csproj \
--replace-fail 'net6.0' 'net8.0'
'';
preConfigureNuGet = ''
# This should really be in the upstream nuget.config
dotnet nuget add source https://api.nuget.org/v3/index.json \
-n nuget.org --configfile NuGet.Config
'';
runtimeDeps = [
bc
];