about summary refs log tree commit diff
path: root/pkgs/development/interpreters/lunatic
diff options
context:
space:
mode:
authorWinter <winter@winter.cafe>2022-07-28 00:50:42 -0400
committerWinter <winter@winter.cafe>2022-07-28 00:50:42 -0400
commitd99b07b593552b3169f814afb49654fccb3b48c5 (patch)
tree4a789e47833a8fe0a2fb74d4bbf6586179dcfe50 /pkgs/development/interpreters/lunatic
parentfc8b6a0aaceca5b36dd09d7c160587f4c9b8c4f7 (diff)
lunatic: mark as unbroken on darwin
Diffstat (limited to 'pkgs/development/interpreters/lunatic')
-rw-r--r--pkgs/development/interpreters/lunatic/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/lunatic/default.nix b/pkgs/development/interpreters/lunatic/default.nix
index 5c47131cce3cc..388a40b55808a 100644
--- a/pkgs/development/interpreters/lunatic/default.nix
+++ b/pkgs/development/interpreters/lunatic/default.nix
@@ -1,4 +1,4 @@
-{ lib, rustPlatform, fetchFromGitHub, cmake, stdenv }:
+{ lib, rustPlatform, fetchFromGitHub, cmake }:
 
 rustPlatform.buildRustPackage rec {
   pname = "lunatic";
@@ -21,6 +21,5 @@ rustPlatform.buildRustPackage rec {
     changelog = "https://github.com/lunatic-solutions/lunatic/blob/v${version}/RELEASES.md";
     license = with licenses; [ mit /* or */ asl20 ];
     maintainers = with maintainers; [ figsoda ];
-    broken = stdenv.isDarwin;
   };
 }