From ffa9c194e5453daab0d439f6f293d8f0d4f3c923 Mon Sep 17 00:00:00 2001 From: "Matthieu C." <886074+teto@users.noreply.github.com> Date: Mon, 9 Feb 2026 16:14:39 +0100 Subject: [PATCH] build: fix build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ➜ 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 --- nix/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/package.nix b/nix/package.nix index f9e4778..67f4ed4 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -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 };