about summary refs log tree commit diff
path: root/pkgs/applications/video/gnomecast
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-06 00:14:41 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-07 10:42:23 +0100
commitc3721dddab29ed18ceb7b558e92ee59728c92470 (patch)
treefeb5987289ed7ec5a3abd335a470b2b5011a95d7 /pkgs/applications/video/gnomecast
parentcda8b591a06b498558a713d392084ff1f2a2e6ad (diff)
gnomecast: Mark broken on darwin
Diffstat (limited to 'pkgs/applications/video/gnomecast')
-rw-r--r--pkgs/applications/video/gnomecast/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/video/gnomecast/default.nix b/pkgs/applications/video/gnomecast/default.nix
index e4814e40c1fd4..486159135055b 100644
--- a/pkgs/applications/video/gnomecast/default.nix
+++ b/pkgs/applications/video/gnomecast/default.nix
@@ -1,4 +1,4 @@
-{ lib, python3Packages, gtk3, gobject-introspection, ffmpeg_3, wrapGAppsHook }:
+{ stdenv, lib, python3Packages, gtk3, gobject-introspection, ffmpeg_3, wrapGAppsHook }:
 
 with python3Packages;
 buildPythonApplication rec {
@@ -24,5 +24,6 @@ buildPythonApplication rec {
     description = "A native Linux GUI for Chromecasting local files";
     homepage = "https://github.com/keredson/gnomecast";
     license = with licenses; [ gpl3 ];
+    broken = stdenv.isDarwin;
   };
 }