gotify-desktop: mark as broken for darwin

authored by Bryan A. S and committed by Rick van Schijndel 51d859cd 3141204b

+2 -1
+2 -1
pkgs/tools/misc/gotify-desktop/default.nix
··· 1 - { lib, fetchFromGitHub, rustPlatform, openssl, pkg-config}: 1 + { lib, fetchFromGitHub, rustPlatform, openssl, pkg-config, stdenv}: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "gotify-desktop"; ··· 22 22 homepage = "https://github.com/desbma/gotify-desktop"; 23 23 license = licenses.gpl3Plus; 24 24 maintainers = with maintainers; [ bryanasdev000 genofire ]; 25 + broken = stdenv.isDarwin; 25 26 }; 26 27 }