rusty-psn: 0.3.7 -> 0.5.6 (#385408)

This commit is contained in:
Sandro
2025-02-27 13:14:16 +01:00
committed by GitHub
2 changed files with 7 additions and 22 deletions
@@ -1,13 +0,0 @@
diff --git a/Cargo.lock b/Cargo.lock
index 3b63c3d..38a0fc0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3141,7 +3141,7 @@ dependencies = [
[[package]]
name = "rusty-psn"
-version = "0.3.3"
+version = "0.3.7"
dependencies = [
"bytesize",
"clap",
+7 -9
View File
@@ -18,19 +18,17 @@
rustPlatform.buildRustPackage rec {
pname = "rusty-psn";
version = "0.3.7";
version = "0.5.6";
src = fetchFromGitHub {
owner = "RainbowCookie32";
repo = "rusty-psn";
rev = "v${version}";
sha256 = "sha256-EGj9VVY+Zbmth7H1oTgq38KNLT/aWoTPn8k4sVkScgg=";
tag = "v${version}";
hash = "sha256-Nx73PkHmhGQo6arr5a878htKd2DXuz2q95++ute0oPg=";
};
cargoPatches = [ ./fix-cargo-lock.patch ];
useFetchCargoVendor = true;
cargoHash = "sha256-FhY4Yf7e0Kk/a1ngPUQcd6R6MDpoyt/2WJhcCeTjKJE=";
cargoHash = "sha256-cMrN7EkRPsb+NLUgXP9K9bw1kL1j/3Qpp9iwM4B+AWo=";
# Tests require network access
doCheck = false;
@@ -92,12 +90,12 @@ rustPlatform.buildRustPackage rec {
});
desktopItems = lib.optionals withGui [ desktopItem ];
meta = with lib; {
meta = {
description = "Simple tool to grab updates for PS3 games, directly from Sony's servers using their updates API";
homepage = "https://github.com/RainbowCookie32/rusty-psn/";
license = licenses.mit;
license = lib.licenses.mit;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ AngryAnt ];
maintainers = with lib.maintainers; [ AngryAnt ];
mainProgram = "rusty-psn";
};
}