about summary refs log tree commit diff
path: root/pkgs/applications/audio/librespot
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2022-01-24 13:58:20 -0500
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2022-01-24 13:59:15 -0500
commit1616d5dfb4d5653fb0690e1ee6e98ca6daa33509 (patch)
treeadd275d523fa75709ae33efb1ae8d8901a4ba487 /pkgs/applications/audio/librespot
parenta782293ae8dc043f593ab23ebff6fda076f17960 (diff)
librespot: mark as broken on darwin
Diffstat (limited to 'pkgs/applications/audio/librespot')
-rw-r--r--pkgs/applications/audio/librespot/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/audio/librespot/default.nix b/pkgs/applications/audio/librespot/default.nix
index 64d59516f87f1..8772171c8ce2c 100644
--- a/pkgs/applications/audio/librespot/default.nix
+++ b/pkgs/applications/audio/librespot/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchFromGitHub, rustPlatform, pkg-config, openssl, withRodio ? true
+{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, withRodio ? true
 , withALSA ? true, alsa-lib ? null, withPulseAudio ? false, libpulseaudio ? null
 , withPortAudio ? false, portaudio ? null }:
 
@@ -35,5 +35,6 @@ rustPlatform.buildRustPackage rec {
     license = with licenses; [ mit ];
     maintainers = with maintainers; [ bennofs ];
     platforms = platforms.unix;
+    broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/librespot.x86_64-darwin
   };
 }