about summary refs log tree commit diff
path: root/pkgs/tools/text/pomsky/default.nix
diff options
context:
space:
mode:
authorYureka <yuka@yuka.dev>2023-03-26 00:16:46 +0100
committerYureka <yuka@yuka.dev>2023-03-26 01:52:04 +0100
commitf8cbc3c2811337e08b02c9113f01a0f70b900bf4 (patch)
tree86548b4baa603957ffbc493e5a1c6773acc1b8b6 /pkgs/tools/text/pomsky/default.nix
parentf3a1640e49f093c42322944675930eb1fe136ac4 (diff)
tree-wide: convert rust with git deps to importCargoLock
Diffstat (limited to 'pkgs/tools/text/pomsky/default.nix')
-rw-r--r--pkgs/tools/text/pomsky/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/tools/text/pomsky/default.nix b/pkgs/tools/text/pomsky/default.nix
index 0e34a2650a9ba..45e44b06e8a5b 100644
--- a/pkgs/tools/text/pomsky/default.nix
+++ b/pkgs/tools/text/pomsky/default.nix
@@ -11,7 +11,12 @@ rustPlatform.buildRustPackage rec {
     hash = "sha256-V4WztquClcBQF74c8WalWITT+SRymEawLXmvTflNEGk=";
   };
 
-  cargoHash = "sha256-34lI4zI1JMYek3sCXOWw08EqhaI1bqTGFPxeEYmEbXQ=";
+  cargoLock = {
+    lockFile = ./Cargo.lock;
+    outputHashes = {
+      "criterion-0.3.6" = "sha256-biFm0+AjKLwV9yHgCaK6E6L6W+6sRbnY2QOKVhv/1C8=";
+    };
+  };
 
   # thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: invalid option '--test-threads''
   doCheck = false;