treewide: pkgs/servers: mark broken for darwin

authored by Rick van Schijndel and committed by Janne Heß 879d2782 a0dd8198

+8 -1
+2 -1
pkgs/servers/livepeer/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule 1 + { stdenv, lib, fetchFromGitHub, buildGoModule 2 2 , pkg-config, ffmpeg, gnutls 3 3 }: 4 4 ··· 24 24 buildInputs = [ ffmpeg gnutls ]; 25 25 26 26 meta = with lib; { 27 + broken = stdenv.isDarwin; 27 28 description = "Official Go implementation of the Livepeer protocol"; 28 29 homepage = "https://livepeer.org"; 29 30 license = licenses.mit;
+1
pkgs/servers/matrix-conduit/default.nix
··· 25 25 cargoBuildFlags = "--bin conduit"; 26 26 27 27 meta = with lib; { 28 + broken = stdenv.isDarwin; 28 29 description = "A Matrix homeserver written in Rust"; 29 30 homepage = "https://conduit.rs/"; 30 31 license = licenses.asl20;
+1
pkgs/servers/rpiplay/default.nix
··· 40 40 ]; 41 41 42 42 meta = with lib; { 43 + broken = stdenv.isDarwin; 43 44 homepage = "https://github.com/FD-/RPiPlay"; 44 45 description = "An open-source implementation of an AirPlay mirroring server."; 45 46 license = licenses.gpl3Plus;
+1
pkgs/servers/search/meilisearch/default.nix
··· 26 26 cargoSha256 = "sha256-dz+1IQZRSeMEagI2dnOtR3A8prg4UZ2Om0pd1BUhuhE="; 27 27 buildInputs = lib.optionals stdenv.isDarwin [ Security DiskArbitration Foundation ]; 28 28 meta = with lib; { 29 + broken = stdenv.isDarwin; 29 30 description = "Powerful, fast, and an easy to use search engine "; 30 31 homepage = "https://docs.meilisearch.com/"; 31 32 license = licenses.mit;
+1
pkgs/servers/sql/postgresql/ext/temporal_tables.nix
··· 22 22 ''; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 description = "Temporal Tables PostgreSQL Extension "; 26 27 homepage = "https://github.com/mlt/temporal_tables"; 27 28 maintainers = with maintainers; [ ggpeti ];
+1
pkgs/servers/uxplay/default.nix
··· 42 42 ]; 43 43 44 44 meta = with lib; { 45 + broken = stdenv.isDarwin; 45 46 homepage = "https://github.com/FDH2/UxPlay"; 46 47 description = "AirPlay Unix mirroring server"; 47 48 license = licenses.gpl3Plus;
+1
pkgs/servers/varnish/default.nix
··· 38 38 outputs = [ "out" "dev" "man" ]; 39 39 40 40 meta = with lib; { 41 + broken = stdenv.isDarwin; 41 42 description = "Web application accelerator also known as a caching HTTP reverse proxy"; 42 43 homepage = "https://www.varnish-cache.org"; 43 44 license = licenses.bsd2;