element: mark as broken on darwin

This commit is contained in:
Aaron Jheng 2022-11-14 02:16:43 +00:00
parent b016e85f39
commit 678ccdf716
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3

View File

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub }: { lib, stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec { buildGoModule rec {
pname = "element"; pname = "element";
@ -18,5 +18,6 @@ buildGoModule rec {
homepage = "https://github.com/gennaro-tedesco/element"; homepage = "https://github.com/gennaro-tedesco/element";
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.j0hax ]; maintainers = [ maintainers.j0hax ];
broken = stdenv.isDarwin;
}; };
} }