lunatic: mark broken on darwin

This commit is contained in:
figsoda 2021-11-15 09:05:31 -05:00
parent ce6665dcee
commit 79497a972a

View file

@ -1,4 +1,4 @@
{ lib, rustPlatform, fetchFromGitHub, fetchpatch, cmake }:
{ lib, rustPlatform, fetchFromGitHub, fetchpatch, cmake, stdenv }:
rustPlatform.buildRustPackage rec {
pname = "lunatic";
@ -30,5 +30,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://lunatic.solutions";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ figsoda ];
broken = stdenv.isDarwin;
};
}