about summary refs log tree commit diff
path: root/pkgs/development/interpreters/lunatic
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-11-15 12:21:54 -0500
committerfigsoda <figsoda@pm.me>2022-11-15 13:21:30 -0500
commit4a599be7758b743b2ba2c87e2ac2f46b3e68e620 (patch)
tree4cfc3c298d6dcb535509db86bdfee91e37276904 /pkgs/development/interpreters/lunatic
parent97b8d9459f7922ce0e666113a1e8e6071424ae16 (diff)
lunatic: 0.10.1 -> 0.12.0
Diffstat (limited to 'pkgs/development/interpreters/lunatic')
-rw-r--r--pkgs/development/interpreters/lunatic/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/development/interpreters/lunatic/default.nix b/pkgs/development/interpreters/lunatic/default.nix
index c33429279779b..b056b7a133b4f 100644
--- a/pkgs/development/interpreters/lunatic/default.nix
+++ b/pkgs/development/interpreters/lunatic/default.nix
@@ -1,19 +1,17 @@
-{ lib, rustPlatform, fetchFromGitHub, cmake, stdenv, Security }:
+{ lib, rustPlatform, fetchFromGitHub, stdenv, Security }:
 
 rustPlatform.buildRustPackage rec {
   pname = "lunatic";
-  version = "0.10.1";
+  version = "0.12.0";
 
   src = fetchFromGitHub {
     owner = "lunatic-solutions";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-MQ10WwvUdqU4w9uA4H1+VRM29HXVtLMwfGvbM6VqS90=";
+    sha256 = "sha256-7fxccufM5tunbutABEtsa6++OLTsS72oA219zvf+KN8=";
   };
 
-  cargoSha256 = "sha256-tNYA3YruI7VENmLbd3rmZr7BkqHp1HNOfzPTkIiixqA=";
-
-  nativeBuildInputs = [ cmake ];
+  cargoSha256 = "sha256-sHSQUvHTwyqMrGmwpblqpS4HfFiWGb+70a1uloDu2wY=";
 
   buildInputs = lib.optional stdenv.isDarwin Security;