summary refs log tree commit diff
path: root/nix
diff options
context:
space:
mode:
authorSophie Forrest <git@sophieforrest.com>2024-09-11 18:14:21 +1200
committerSophie Forrest <git@sophieforrest.com>2024-09-11 18:14:21 +1200
commitc368412ffd6be8332f12d0a4d8418faf70448fbc (patch)
treefc892b121b448d193cd02381e2c1c977e887d9c8 /nix
parent1c756a672b327d45d6e639b9eafc47d8d45d5344 (diff)
chore: useNextest and use lockfile instead of hash
Diffstat (limited to 'nix')
-rw-r--r--nix/package.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nix/package.nix b/nix/package.nix
index 95ce66b..1ee01ff 100644
--- a/nix/package.nix
+++ b/nix/package.nix
@@ -13,7 +13,8 @@ rustPlatform.buildRustPackage {
     path = ../.;
   };
 
-  cargoHash = "sha256-DU0qxv+KnVa+2SQvQ+CwcpNUc38ud9gwXXoCHC2A0hA=";
+  cargoLock.lockFile = ../Cargo.lock;
+  useNextest = true;
 
   nativeBuildInputs = let inherit (pkgs) openssl pkg-config; in [openssl openssl.dev pkg-config];