audacity: mark darwin as broken

This commit is contained in:
yuu 2022-04-06 01:26:15 -03:00
parent 7acbb8398e
commit 747d2ec39c
No known key found for this signature in database
GPG key ID: 416F303B43C20AC3

View file

@ -83,8 +83,7 @@ let
wxmac' = wxmac.overrideAttrs (oldAttrs: rec { wxmac' = wxmac.overrideAttrs (oldAttrs: rec {
src = wxWidgets_src; src = wxWidgets_src;
}); });
in in stdenv.mkDerivation rec {
stdenv.mkDerivation rec {
inherit pname version; inherit pname version;
src = fetchFromGitHub { src = fetchFromGitHub {
@ -198,5 +197,9 @@ stdenv.mkDerivation rec {
]; ];
maintainers = with maintainers; [ lheckemann veprbl ]; maintainers = with maintainers; [ lheckemann veprbl ];
platforms = platforms.unix; platforms = platforms.unix;
# darwin-aarch due to qtbase broken for it.
# darwin-x86_64 due to
# https://logs.nix.ci/?attempt_id=5cbc4581-09b4-4148-82fe-0326411a56b3&key=nixos%2Fnixpkgs.152273.
broken = stdenv.isDarwin;
}; };
} }