From 012328d75bc9b5ce8caead24ad2ce93ee3006cec Mon Sep 17 00:00:00 2001 From: Victor Nawothnig Date: Thu, 2 Jun 2022 10:57:17 +0200 Subject: [PATCH] Switch to cargoLock.lockFile --- package.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.nix b/package.nix index c1c79a0..c31f8e1 100644 --- a/package.nix +++ b/package.nix @@ -9,7 +9,9 @@ rustPlatform.buildRustPackage rec { src = lib.cleanSource ./.; }; - cargoSha256 = "sha256-GxWhzDx3hK7ONtLINYz0Ssw4DL+BNX6uH0JoQuooCCU="; + cargoLock = { + lockFile = ./Cargo.lock; + }; nativeBuildInputs = [ installShellFiles ];