summary refs log tree commit diff
path: root/pkgs/tools/audio/playerctl
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2018-12-18 16:00:00 -0500
committerworldofpeace <worldofpeace@users.noreply.github.com>2018-12-18 16:00:00 -0500
commit47cc83dcc81e00e453c9f621098ee0f4a1697ad7 (patch)
tree2ba43e0187d3291e0fedb8a358934143f464afda /pkgs/tools/audio/playerctl
parent59f8d67ec7bd70d6565ecbcf561b6eabf6cadda3 (diff)
downloadnixpkgs-47cc83dcc81e00e453c9f621098ee0f4a1697ad7.tar
nixpkgs-47cc83dcc81e00e453c9f621098ee0f4a1697ad7.tar.gz
nixpkgs-47cc83dcc81e00e453c9f621098ee0f4a1697ad7.tar.bz2
nixpkgs-47cc83dcc81e00e453c9f621098ee0f4a1697ad7.tar.lz
nixpkgs-47cc83dcc81e00e453c9f621098ee0f4a1697ad7.tar.xz
nixpkgs-47cc83dcc81e00e453c9f621098ee0f4a1697ad7.tar.zst
nixpkgs-47cc83dcc81e00e453c9f621098ee0f4a1697ad7.zip
playerctl: mark as broken on darwin
Build fails with:
../playerctl/playerctl-player.c:274:19: error: use of undeclared identifier 'CLOCK_MONOTONIC'
    clock_gettime(CLOCK_MONOTONIC, &player->priv->cached_position_monotonic);
Diffstat (limited to 'pkgs/tools/audio/playerctl')
-rw-r--r--pkgs/tools/audio/playerctl/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/tools/audio/playerctl/default.nix b/pkgs/tools/audio/playerctl/default.nix
index 6bc15cb65d8..d1edbf94fe0 100644
--- a/pkgs/tools/audio/playerctl/default.nix
+++ b/pkgs/tools/audio/playerctl/default.nix
@@ -20,5 +20,6 @@ stdenv.mkDerivation rec {
     license = licenses.lgpl3;
     platforms = platforms.unix;
     maintainers = with maintainers; [ puffnfresh ];
+    broken = stdenv.hostPlatform.isDarwin;
   };
 }