build: fix build

➜ nix build
note: keeping build directory '/nix/var/nix/builds/nix-1018630-1566167475/build'
error: hash mismatch in fixed-output derivation '/nix/store/i68wsmgsrsbbyqvr4qw3cdrv8wdqha3z-nix-evaluator-stats-pnpm-deps.drv':
         specified: sha256-CpfaUvQbvOXljCqNwyMUJNDisnlrWCHBwhmdIzjmv+c=
            got:    sha256-K6wk/OrH9eO/jYMcqkj4MhREg59qHu3Zvxd3JKFIOgM=
error: Cannot build '/nix/store/c4fg33nrz8xqw4nxv8a0fnz53kz11c17-nix-evaluator-stats-0.1.0.drv'.
       Reason: 1 dependency failed.
       Output paths:
         /nix/store/nrkpy8nck6kkkpv1a29x3w611cyv6936-nix-evaluator-stats-0.1.0
This commit is contained in:
Matthieu C. 2026-02-09 16:14:39 +01:00
commit ffa9c194e5

View file

@ -20,7 +20,7 @@ stdenv.mkDerivation (finalAttrs: {
pnpmDeps = fetchPnpmDeps {
inherit (finalAttrs) pname src;
hash = "sha256-CpfaUvQbvOXljCqNwyMUJNDisnlrWCHBwhmdIzjmv+c=";
hash = "sha256-K6wk/OrH9eO/jYMcqkj4MhREg59qHu3Zvxd3JKFIOgM=";
fetcherVersion = 3; # https://nixos.org/manual/nixpkgs/stable/#javascript-pnpm-fetcherVersion
};