From c1c25e33ffcbac3a1df83ca071ca83f119577012 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Thu, 28 May 2026 23:03:43 +0200 Subject: [PATCH] chore(nix): temporary use of cargoHash instead of cargoLock.lockFile --- nix/make-binary.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/make-binary.nix b/nix/make-binary.nix index 17fa8b4..f3defdb 100644 --- a/nix/make-binary.nix +++ b/nix/make-binary.nix @@ -9,7 +9,8 @@ pname = name; inherit version; src = pkgs.lib.cleanSource ../.; - cargoLock.lockFile = ../Cargo.lock; + # cargoLock.lockFile = ../Cargo.lock; + cargoHash = "sha256-QfNC11XQ+qhdsxU6JWiHsvLnhn9xvxKaEPhhDJ2nM0c="; useNextest = true; meta = { inherit (cargoToml.package) description homepage;