Merge pull request #144687 from figsoda/eww-linux

eww: set meta.broken on darwin
This commit is contained in:
figsoda 2021-11-04 22:38:51 -04:00 committed by GitHub
commit 05b19e3129
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@
, gtk3 , gtk3
, withWayland ? false , withWayland ? false
, gtk-layer-shell , gtk-layer-shell
, stdenv
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
@ -39,5 +40,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/elkowar/eww"; homepage = "https://github.com/elkowar/eww";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ figsoda legendofmiracles ]; maintainers = with maintainers; [ figsoda legendofmiracles ];
broken = stdenv.isDarwin;
}; };
} }