wheelwizard: 2.4.5 -> 2.4.11 (#540089)

This commit is contained in:
Sandro
2026-07-14 20:24:18 +00:00
committed by GitHub
2 changed files with 13 additions and 18 deletions
+7 -12
View File
@@ -321,8 +321,8 @@
},
{
"pname": "SharpCompress",
"version": "0.39.0",
"hash": "sha256-Me88MMn5NUiw5bugFKCKFRnFSXQKIFZJ+k97Ex6jgZE="
"version": "0.48.1",
"hash": "sha256-Y1lH1TrxBua3Ux6trRUQGeSfYjE3qld6TQDz/ABy6Ws="
},
{
"pname": "SkiaSharp",
@@ -349,11 +349,6 @@
"version": "2.88.9",
"hash": "sha256-kP5XM5GgwHGfNJfe4T2yO5NIZtiF71Ddp0pd1vG5V/4="
},
{
"pname": "System.Buffers",
"version": "4.6.0",
"hash": "sha256-c2QlgFB16IlfBms5YLsTCFQ/QeKoS6ph1a9mdRkq/Jc="
},
{
"pname": "System.Diagnostics.DiagnosticSource",
"version": "10.0.0-preview.3.25171.5",
@@ -396,12 +391,12 @@
},
{
"pname": "Tmds.DBus.Protocol",
"version": "0.21.2",
"hash": "sha256-gaK/5aAummyin6ptnhaJbnA0ih4+2xADrtrLfFbHwYI="
"version": "0.21.3",
"hash": "sha256-HVEIHSeSe29ergHxsNvWYu3o7Ai8VZKo09yFn+miTnI="
},
{
"pname": "ZstdSharp.Port",
"version": "0.8.4",
"hash": "sha256-4bFUNK++6yUOnY7bZQiibClSJUQjH0uIiUbQLBtPWbo="
"pname": "YamlDotNet",
"version": "17.1.0",
"hash": "sha256-Zdlw62rVud2U94BQKqrp5OFQiDcQ9rRrKeaVnNxREjY="
}
]
+6 -6
View File
@@ -12,15 +12,15 @@
# passthru
nix-update-script,
}:
buildDotnetModule rec {
buildDotnetModule (finalAttrs: {
pname = "wheelwizard";
version = "2.4.5";
version = "2.4.11";
src = fetchFromGitHub {
owner = "TeamWheelWizard";
repo = "WheelWizard";
tag = version;
hash = "sha256-/85ts++S+A7XEgjCjcqJPWk2NBrvOyQ3+hq7lbSEN0g=";
tag = "v${finalAttrs.version}";
hash = "sha256-8Dex2PDgwnxKguf0jtC1T0+jm7bA7jDfvspwkiqJgUg";
};
postPatch = ''
rm .config/dotnet-tools.json
@@ -53,7 +53,7 @@ buildDotnetModule rec {
cp -r WheelWizard/bin/Release/net8.0/*/* $out/lib/wheelwizard/
makeWrapper $out/lib/wheelwizard/WheelWizard $out/bin/WheelWizard \
--prefix PATH : ${lib.makeBinPath [ dotnet-runtime ]}
--prefix PATH : ${lib.makeBinPath [ finalAttrs.dotnet-runtime ]}
install -D $desktopItem/share/applications/* -t $out/share/applications
@@ -82,4 +82,4 @@ buildDotnetModule rec {
mainProgram = "WheelWizard";
maintainers = with lib.maintainers; [ DerHalbGrieche ];
};
}
})