about summary refs log tree commit diff
path: root/pkgs/tools/audio
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2022-05-30 14:10:43 +0200
committerGitHub <noreply@github.com>2022-05-30 14:10:43 +0200
commitbfc5086ae9c82f1f9fea63f10485e1f43d128027 (patch)
treef235f8be0c39ef6ebcb73ed1dc59e9ec3aee33ea /pkgs/tools/audio
parent90ce1f86b9bec2f468fd82316d12b1f9d24397d7 (diff)
parent26243136fe7559eb139d0bc6bda5d8a1ad737a3a (diff)
Merge pull request #173671 from Mindavi/treewide/broken-zhf
treewide: start marking packages broken
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/mpd-discord-rpc/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/audio/mpd-discord-rpc/default.nix b/pkgs/tools/audio/mpd-discord-rpc/default.nix
index 9d8a55d770600..f7cdf52f44a2e 100644
--- a/pkgs/tools/audio/mpd-discord-rpc/default.nix
+++ b/pkgs/tools/audio/mpd-discord-rpc/default.nix
@@ -1,4 +1,5 @@
-{ lib
+{ stdenv
+, lib
 , rustPlatform
 , fetchFromGitHub
 }:
@@ -17,6 +18,7 @@ rustPlatform.buildRustPackage rec {
   cargoSha256 = "sha256-WhlVWQCUGP+K9md0yp6ZD6mGYMso1fUYKDuXXrC2FeI=";
 
   meta = with lib; {
+    broken = stdenv.isDarwin;
     description = "Rust application which displays your currently playing song / album / artist from MPD in Discord using Rich Presence";
     homepage = "https://github.com/JakeStanger/mpd-discord-rpc";
     license = licenses.mit;