treewide: pkgs/servers: mark broken for darwin

main
Rick van Schijndel 2 years ago committed by Janne Heß
parent a0dd8198cd
commit 879d278253
No known key found for this signature in database
GPG Key ID: 69165158F05265DF
  1. 3
      pkgs/servers/livepeer/default.nix
  2. 1
      pkgs/servers/matrix-conduit/default.nix
  3. 1
      pkgs/servers/rpiplay/default.nix
  4. 1
      pkgs/servers/search/meilisearch/default.nix
  5. 1
      pkgs/servers/sql/postgresql/ext/temporal_tables.nix
  6. 1
      pkgs/servers/uxplay/default.nix
  7. 1
      pkgs/servers/varnish/default.nix

@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, buildGoModule
{ stdenv, lib, fetchFromGitHub, buildGoModule
, pkg-config, ffmpeg, gnutls
}:
@ -24,6 +24,7 @@ buildGoModule rec {
buildInputs = [ ffmpeg gnutls ];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Official Go implementation of the Livepeer protocol";
homepage = "https://livepeer.org";
license = licenses.mit;

@ -25,6 +25,7 @@ rustPlatform.buildRustPackage rec {
cargoBuildFlags = "--bin conduit";
meta = with lib; {
broken = stdenv.isDarwin;
description = "A Matrix homeserver written in Rust";
homepage = "https://conduit.rs/";
license = licenses.asl20;

@ -40,6 +40,7 @@ stdenv.mkDerivation rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://github.com/FD-/RPiPlay";
description = "An open-source implementation of an AirPlay mirroring server.";
license = licenses.gpl3Plus;

@ -26,6 +26,7 @@ rustPlatform.buildRustPackage {
cargoSha256 = "sha256-dz+1IQZRSeMEagI2dnOtR3A8prg4UZ2Om0pd1BUhuhE=";
buildInputs = lib.optionals stdenv.isDarwin [ Security DiskArbitration Foundation ];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Powerful, fast, and an easy to use search engine ";
homepage = "https://docs.meilisearch.com/";
license = licenses.mit;

@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Temporal Tables PostgreSQL Extension ";
homepage = "https://github.com/mlt/temporal_tables";
maintainers = with maintainers; [ ggpeti ];

@ -42,6 +42,7 @@ stdenv.mkDerivation rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://github.com/FDH2/UxPlay";
description = "AirPlay Unix mirroring server";
license = licenses.gpl3Plus;

@ -38,6 +38,7 @@ let
outputs = [ "out" "dev" "man" ];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Web application accelerator also known as a caching HTTP reverse proxy";
homepage = "https://www.varnish-cache.org";
license = licenses.bsd2;

Loading…
Cancel
Save