diff --git a/pkgs/by-name/wh/wheelwizard/deps.json b/pkgs/by-name/wh/wheelwizard/deps.json index 40b8dabbc900..7bf77ef57451 100644 --- a/pkgs/by-name/wh/wheelwizard/deps.json +++ b/pkgs/by-name/wh/wheelwizard/deps.json @@ -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=" } ] diff --git a/pkgs/by-name/wh/wheelwizard/package.nix b/pkgs/by-name/wh/wheelwizard/package.nix index da7ed7932bc8..4233249b2fa8 100644 --- a/pkgs/by-name/wh/wheelwizard/package.nix +++ b/pkgs/by-name/wh/wheelwizard/package.nix @@ -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 ]; }; -} +})