Merge pull request #266670 from reckenrode/broken-darwin

persepolis,qnotero: mark broken on Darwin for ZHF
This commit is contained in:
Weijia Wang 2023-11-10 17:26:43 +01:00 committed by GitHub
commit 982816eaee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -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 ];
};
}

View File

@ -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; # Upstreams build scripts check and fail on Darwin.
license = licenses.gpl3;
maintainers = [ ];
};