Merge pull request #266670 from reckenrode/broken-darwin
persepolis,qnotero: mark broken on Darwin for ZHF
This commit is contained in:
commit
982816eaee
2 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, fetchFromGitHub, python3Packages, wrapQtAppsHook }:
|
||||
{ lib, stdenv, fetchFromGitHub, python3Packages, wrapQtAppsHook }:
|
||||
|
||||
python3Packages.buildPythonPackage rec {
|
||||
pname = "qnotero";
|
||||
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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 = [ ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue