From 73b3a580270a3dc0a5a76299e17b09376cfc9689 Mon Sep 17 00:00:00 2001 From: Shogo Takata Date: Sun, 24 Aug 2025 13:29:36 +0900 Subject: [PATCH] gitify: update fetcher version Uses fetcher version 2. The output of the fetcher was non deterministic with version 1, specifically on github actions. This seems to fix the issue. Possibly related to https://github.com/NixOS/nixpkgs/issues/422889 --- pkgs/by-name/gi/gitify/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gi/gitify/package.nix b/pkgs/by-name/gi/gitify/package.nix index 1fc3d39a0fbe..29fbd5564fc5 100644 --- a/pkgs/by-name/gi/gitify/package.nix +++ b/pkgs/by-name/gi/gitify/package.nix @@ -33,8 +33,8 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm_10.fetchDeps { inherit (finalAttrs) pname version src; - fetcherVersion = 1; - hash = "sha256-oUjlLE7PzA4wfiQlVPnAYk3MF/lqD7hb+k++0RFGvw4="; + fetcherVersion = 2; + hash = "sha256-AvDKdyJW4kWh2r6XFDyx9DB3PEJc9a0viHKboOVQATg="; }; env.ELECTRON_SKIP_BINARY_DOWNLOAD = 1;