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
This commit is contained in:
Shogo Takata
2025-08-24 15:10:09 +09:00
parent cae27f3ab1
commit 73b3a58027
+2 -2
View File
@@ -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;