summary refs log tree commit diff
path: root/pkgs/tools/networking/persepolis
diff options
context:
space:
mode:
authorRandy Eckenrode <randy@largeandhighquality.com>2023-11-09 23:35:08 -0500
committerRandy Eckenrode <randy@largeandhighquality.com>2023-11-10 08:52:52 -0500
commitcaf4291dd37f04df68929e356d47a3e51f1dd9d9 (patch)
treef93e34863ad0ab9eba56b3af9c0d60af107216f3 /pkgs/tools/networking/persepolis
parent654135cc441d1e31b26194255a9e7f20d159a208 (diff)
downloadnixpkgs-caf4291dd37f04df68929e356d47a3e51f1dd9d9.tar
nixpkgs-caf4291dd37f04df68929e356d47a3e51f1dd9d9.tar.gz
nixpkgs-caf4291dd37f04df68929e356d47a3e51f1dd9d9.tar.bz2
nixpkgs-caf4291dd37f04df68929e356d47a3e51f1dd9d9.tar.lz
nixpkgs-caf4291dd37f04df68929e356d47a3e51f1dd9d9.tar.xz
nixpkgs-caf4291dd37f04df68929e356d47a3e51f1dd9d9.tar.zst
nixpkgs-caf4291dd37f04df68929e356d47a3e51f1dd9d9.zip
persepolis: mark broken on Darwin
Diffstat (limited to 'pkgs/tools/networking/persepolis')
-rw-r--r--pkgs/tools/networking/persepolis/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/networking/persepolis/default.nix b/pkgs/tools/networking/persepolis/default.nix
index ed449ecb992..a4ba2b4f04a 100644
--- a/pkgs/tools/networking/persepolis/default.nix
+++ b/pkgs/tools/networking/persepolis/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonApplication, fetchFromGitHub
+{ lib, stdenv, buildPythonApplication, fetchFromGitHub
 , aria
 , libnotify
 , pulseaudio
@@ -64,6 +64,7 @@ buildPythonApplication rec {
   meta = with lib; {
     description = "Persepolis Download Manager is a GUI for aria2";
     homepage = "https://persepolisdm.github.io/";
+    broken = stdenv.isDarwin; # Upstream’s build scripts check and fail on Darwin.
     license = licenses.gpl3;
     maintainers = [ ];
   };