From da65aa41093a08694d4ece7a08ac846792f43865 Mon Sep 17 00:00:00 2001 From: maulanasdqn Date: Wed, 21 Jan 2026 17:02:14 +0700 Subject: [PATCH] chore(nix): update npmDepsHash for local fonts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update hash after adding font files to the repository. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 6a48c42..40eb12f 100644 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,7 @@ pkgs = import nixpkgs { inherit system; }; # NPM dependencies hash (update with: nix run nixpkgs#prefetch-npm-deps -- package-lock.json) - npmDepsHash = "sha256-dKBi3bM/cpzK70s62tJTI1j/lhVlojAX2IkyNK0oICI="; + npmDepsHash = "sha256-J6b+nDIWqL6K9XNVo1SBdIALUPCEgMUAnzqeZyOK6pI="; # Import helpers mkViteApp = import ./nix/mkViteApp.nix { @@ -107,7 +107,7 @@ mkHackathonWithEnv = envVars: import ./nix/mkViteApp.nix { pkgs = final; src = self; - npmDepsHash = "sha256-dKBi3bM/cpzK70s62tJTI1j/lhVlojAX2IkyNK0oICI="; + npmDepsHash = "sha256-J6b+nDIWqL6K9XNVo1SBdIALUPCEgMUAnzqeZyOK6pI="; } { name = "hackathon"; buildScript = "hackathon:build"; inherit envVars; }; }; };