From 9453e4f68aa4ea06a8f042df3e519a00413538a2 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 10 Dec 2024 09:29:01 +0000 Subject: [PATCH] inv-sig-helper: 0-unstable-2024-09-24 -> 0-unstable-2024-12-10 --- pkgs/by-name/in/inv-sig-helper/package.nix | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pkgs/by-name/in/inv-sig-helper/package.nix b/pkgs/by-name/in/inv-sig-helper/package.nix index a6b295a0fbf2..5895d3eed080 100644 --- a/pkgs/by-name/in/inv-sig-helper/package.nix +++ b/pkgs/by-name/in/inv-sig-helper/package.nix @@ -1,6 +1,5 @@ { lib, - stdenv, rustPlatform, fetchFromGitHub, @@ -9,32 +8,33 @@ # buildInputs openssl, - darwin, + + # passthru + unstableGitUpdater, }: rustPlatform.buildRustPackage { pname = "inv-sig-helper"; - version = "0-unstable-2024-09-24"; + version = "0-unstable-2024-12-10"; src = fetchFromGitHub { owner = "iv-org"; repo = "inv_sig_helper"; - rev = "5025e49e6106f93ec06d0e3fd542a51e1c44c25a"; - hash = "sha256-fMRjkZRMvcro3pOO20l5zRDOwn/E5KTVBOiDmcGROz4="; + rev = "ac0269f1586df5a853c4321256866bcbea89802b"; + hash = "sha256-w8ZvNCs6xz79RjAzIVhtYRJoLzC97RYm2U1ydao3Ons="; }; - cargoHash = "sha256-AisolMo++xMDesdfafeGx37r7sGbk0P0vMsHq0YTUL4="; + cargoHash = "sha256-Y9q64ltv2QRtRUy5t40JIfwFh8ryO1D0Gdg7xO1azws="; nativeBuildInputs = [ pkg-config ]; - buildInputs = - [ openssl ] - ++ lib.optionals stdenv.hostPlatform.isDarwin [ - darwin.apple_sdk.frameworks.Security - darwin.apple_sdk.frameworks.SystemConfiguration - ]; + buildInputs = [ + openssl + ]; + + passthru.updateScript = unstableGitUpdater { }; meta = { description = "Rust service that decrypts YouTube signatures and manages player information";