Skip to content

Commit

Permalink
Merge pull request #266670 from reckenrode/broken-darwin
Browse files Browse the repository at this point in the history
persepolis,qnotero: mark broken on Darwin for ZHF
  • Loading branch information
wegank committed Nov 10, 2023
2 parents 681973a + 2cfcdff commit 982816e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pkgs/applications/office/qnotero/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, python3Packages, wrapQtAppsHook }:
{ lib, stdenv, fetchFromGitHub, python3Packages, wrapQtAppsHook }:

python3Packages.buildPythonPackage rec {
pname = "qnotero";
Expand Down Expand Up @@ -46,6 +46,7 @@ python3Packages.buildPythonPackage rec {
homepage = "https://www.cogsci.nl/software/qnotero";
license = lib.licenses.gpl2;
platforms = lib.platforms.unix;
broken = stdenv.isDarwin; # Build fails even after adding cx-freeze to `buildInputs`
maintainers = [ lib.maintainers.nico202 ];
};
}
3 changes: 2 additions & 1 deletion pkgs/tools/networking/persepolis/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, buildPythonApplication, fetchFromGitHub
{ lib, stdenv, buildPythonApplication, fetchFromGitHub
, aria
, libnotify
, pulseaudio
Expand Down Expand Up @@ -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 = [ ];
};
Expand Down

0 comments on commit 982816e

Please sign in to comment.