treewide: pkgs/applications: mark broken for darwin

This commit is contained in:
Rick van Schijndel 2022-05-28 15:28:44 +02:00
parent f97a7e634f
commit 37c633f7ae
66 changed files with 89 additions and 17 deletions

View File

@ -1,4 +1,5 @@
{ lib
{ stdenv
, lib
, mopidy
, python3Packages
}:
@ -22,6 +23,7 @@ python3Packages.buildPythonApplication rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://github.com/mopidy/mopidy-local";
description = "Mopidy extension for playing music from your local music archive";
license = licenses.asl20;

View File

@ -29,6 +29,7 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "1hgdzyz005244f2mh97js9ga0a6s2hcd6iydz07f1hmhsh1j2bwy";
meta = with lib; {
broken = stdenv.isDarwin;
description = "An automatic music sorter (based on ID3 tags)";
homepage = "https://github.com/quebin31/muso";
license = with licenses; [ gpl3Plus ];

View File

@ -28,6 +28,7 @@ stdenv.mkDerivation {
] ++ additionalBuildInputs;
meta = with lib; {
broken = stdenv.isDarwin;
description = description;
homepage = "https://open-music-kontrollers.ch/lv2/${pname}:";
license = licenses.artistic2;

View File

@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, meson, ninja, pkg-config, appstream-glib
{ stdenv, lib, fetchFromGitHub, meson, ninja, pkg-config, appstream-glib
, wrapGAppsHook, pythonPackages, gtk3, gnome, gobject-introspection
, libnotify, libsecret, gst_all_1 }:
@ -28,6 +28,7 @@ pythonPackages.buildPythonApplication rec {
(with pythonPackages; [ pygobject3 pylast ]);
meta = with lib; {
broken = stdenv.isDarwin;
description = "Pandora Internet Radio player for GNOME";
homepage = "https://pithos.github.io/";
license = licenses.gpl3;

View File

@ -46,6 +46,7 @@ stdenv.mkDerivation rec {
makeFlags = [ "DESTDIR=$(out)" ];
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "http://www.drpetter.se/project_sfxr.html";
description = "A videogame sound effect generator";
license = licenses.mit;

View File

@ -41,6 +41,7 @@ rustPlatform.buildRustPackage rec {
checkFlags = "--skip configuration::tests::should_resolve_external_nat_hosts";
meta = with lib; {
broken = stdenv.isDarwin;
description = "Fast, light, robust Ethereum implementation";
homepage = "http://parity.io/ethereum";
license = licenses.gpl3;

View File

@ -43,6 +43,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = {
broken = stdenv.isDarwin;
description = "Privacy-Focused Marketplace & Decentralized Application Platform";
longDescription = ''
An open source, decentralized privacy platform built for global person to person eCommerce.

View File

@ -64,6 +64,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "An open source crypto-currency focused on fast private transactions";
longDescription = ''
PIVX is an MIT licensed, open source, blockchain-based cryptocurrency with

View File

@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
dontWrapQtApps = true;
meta = with lib; {
broken = stdenv.isDarwin;
description = "Simple XML editor based on qt libraries" ;
homepage = "https://sourceforge.net/projects/qxmledit";
license = licenses.lgpl2;

View File

@ -37,6 +37,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://gitlab.com/Mr_Goldberg/goldberg_emulator";
changelog = "https://gitlab.com/Mr_Goldberg/goldberg_emulator/-/releases";
description = "Program that emulates steam online features";

View File

@ -146,6 +146,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Is a multi-purpose emulation framework";
homepage = "https://www.mamedev.org/";
license = with licenses; [ bsd3 gpl2Plus ];

View File

@ -86,6 +86,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Playstation 1 emulator";
homepage = "https://github.com/iCatButler/pcsxr";
maintainers = with maintainers; [ rardiol ];

View File

@ -81,6 +81,7 @@ mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = ''
OpenOrienteering Mapper is an orienteering mapmaking program
and provides a free alternative to the existing proprietary solution.

View File

@ -44,6 +44,7 @@ mkDerivation rec {
};
meta = with lib; {
broken = stdenv.isDarwin;
description = "A portable DjVu viewer (Qt5) and browser (nsdejavu) plugin";
homepage = "http://djvu.sourceforge.net/djview4.html";
license = licenses.gpl2;

View File

@ -78,6 +78,7 @@ rustPlatform.buildRustPackage rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Use your tablet as graphic tablet/touch screen on your computer";
homepage = "https://github.com/H-M-H/Weylus";
license = with licenses; [ agpl3Only ];

View File

@ -1,4 +1,4 @@
{ mkDerivation, fetchFromGitHub, cmake, pkg-config, lib,
{ stdenv, mkDerivation, fetchFromGitHub, cmake, pkg-config, lib,
qttools, fribidi, libunibreak }:
mkDerivation rec {
@ -17,6 +17,7 @@ mkDerivation rec {
buildInputs = [ qttools fribidi libunibreak ];
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://github.com/buggins/coolreader";
description = "Cross platform open source e-book reader";
license = licenses.gpl2Plus; # see https://github.com/buggins/coolreader/issues/80

View File

@ -57,6 +57,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://github.com/Cubitect/cubiomes-viewer";
description = "A graphical Minecraft seed finder and map viewer";
longDescription = ''

View File

@ -1,4 +1,4 @@
{lib, python3Packages, gettext, qt5, fetchFromGitHub}:
{ stdenv, lib, python3Packages, gettext, qt5, fetchFromGitHub}:
python3Packages.buildPythonApplication rec {
pname = "dupeguru";
@ -57,6 +57,7 @@ python3Packages.buildPythonApplication rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "GUI tool to find duplicate files in a system";
homepage = "https://github.com/arsenetar/dupeguru";
license = licenses.bsd3;

View File

@ -56,6 +56,7 @@ stdenv.mkDerivation rec {
+ lib.optionalString stdenv.isAarch64 "rm -v testo.d/arc-project.test";
meta = with lib; {
broken = stdenv.isDarwin;
description = "Convert, upload and download data from GPS and Map programs";
longDescription = ''
GPSBabel converts waypoints, tracks, and routes between popular

View File

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles }:
buildGoModule rec {
pname = "hugo";
@ -33,6 +33,7 @@ buildGoModule rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "A fast and modern static website engine";
homepage = "https://gohugo.io";
license = licenses.asl20;

View File

@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
installFlags = [ "bashcompdir=\${out}/share/bash-completion/completions" ];
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://csl.name/jp2a/";
description = "A small utility that converts JPG images to ASCII";
license = licenses.gpl2Only;

View File

@ -57,6 +57,7 @@ with python3.pkgs; buildPythonApplication rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "http://lostpackets.de/khal/";
description = "CLI calendar application";
license = licenses.mit;

View File

@ -37,6 +37,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = with lib; {
broken = stdenv.isDarwin;
description = "A framework for controlling entertainment lighting equipment";
homepage = "https://www.openlighting.org/ola/";
maintainers = with maintainers; [ globin ];

View File

@ -7,6 +7,7 @@
version = "3.1.1";
meta = with lib; {
broken = stdenv.isDarwin;
description = "OpenSteno Plover stenography software";
maintainers = with maintainers; [ twey kovirobi ];
license = licenses.gpl2;
@ -31,6 +32,7 @@
version = "4.0.0.dev10";
meta = with lib; {
broken = stdenv.isDarwin;
description = "OpenSteno Plover stenography software";
maintainers = with maintainers; [ twey kovirobi ];
license = licenses.gpl2;

View File

@ -1,4 +1,5 @@
{ lib
{ stdenv
, lib
, python3
, ffmpeg
}:
@ -40,6 +41,7 @@ python3.pkgs.buildPythonApplication rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Yet another simple static gallery generator";
homepage = "http://sigal.saimon.org/";
license = licenses.mit;

View File

@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
doCheck = !stdenv.isDarwin;
meta = with lib; {
broken = stdenv.isDarwin;
description = "An md5sum-alike program that works with Tiger/THEX hashes";
longDescription = ''
tthsum generates or checks TTH checksums (root of the THEX hash

View File

@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Perform a bus reset on a USB device using its vendor and product ID";
homepage = "https://github.com/ralight/usb-reset";
changelog = "https://github.com/ralight/usb-reset/blob/master/ChangeLog.txt";

View File

@ -1,4 +1,4 @@
{ mkDerivation, lib, fetchFromGitHub, autoreconfHook, pkg-config
{ stdenv, mkDerivation, lib, fetchFromGitHub, autoreconfHook, pkg-config
, libtool, openssl, qtbase, qttools, sphinx }:
mkDerivation rec {
@ -22,6 +22,7 @@ mkDerivation rec {
enableParallelBuilding = true;
meta = with lib; {
broken = stdenv.isDarwin;
description = "An x509 certificate generation tool, handling RSA, DSA and EC keys, certificate signing requests (PKCS#10) and CRLs";
homepage = "https://hohnstaedt.de/xca/";
license = licenses.bsd3;

View File

@ -28,6 +28,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Monero (XMR) CPU miner";
homepage = "https://github.com/xmrig/xmrig";
license = licenses.gpl3Plus;

View File

@ -1,4 +1,4 @@
{ fetchFromGitHub, lib, xmrig }:
{ stdenv, fetchFromGitHub, lib, xmrig }:
xmrig.overrideAttrs (oldAttrs: rec {
pname = "xmrig-mo";
@ -12,6 +12,7 @@ xmrig.overrideAttrs (oldAttrs: rec {
};
meta = with lib; {
broken = stdenv.isDarwin;
description = "A fork of the XMRig CPU miner with support for algorithm switching";
homepage = "https://github.com/MoneroOcean/xmrig";
license = licenses.gpl3Plus;

View File

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ stdenv, lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "hubble";
@ -14,6 +14,7 @@ buildGoModule rec {
vendorSha256 = null;
meta = with lib; {
broken = stdenv.isDarwin;
description = "Network, Service & Security Observability for Kubernetes using eBPF";
license = licenses.asl20;
homepage = "https://github.com/cilium/hubble/";

View File

@ -1,4 +1,4 @@
{ buildGoModule, fetchFromGitHub, lib, installShellFiles }:
{ stdenv, buildGoModule, fetchFromGitHub, lib, installShellFiles }:
buildGoModule rec {
pname = "jx";
@ -34,6 +34,7 @@ buildGoModule rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Command line tool for installing and using Jenkins X";
homepage = "https://jenkins-x.io";
longDescription = ''

View File

@ -25,6 +25,7 @@ nodePackages.package.override {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Version controlled multi-cluster deployment manager for kubernetes";
maintainers = with maintainers; [ ];
license = licenses.mit;

View File

@ -22,6 +22,7 @@ stdenv.mkDerivation {
];
meta = {
broken = stdenv.isDarwin;
description = "BitTorrent client written in C++";
longDescription = ''
CTorrent, a BitTorrent client implemented in C++, with bugfixes and

View File

@ -22,6 +22,7 @@ rustPlatform.buildRustPackage rec {
PROTOC = "${protobuf}/bin/protoc";
meta = with lib; {
broken = stdenv.isDarwin;
description = "Signal Messenger client for terminal";
homepage = "https://github.com/boxdot/gurk-rs";
license = licenses.agpl3Only;

View File

@ -69,6 +69,7 @@ mkDerivation rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Qt Tox client";
homepage = "https://tox.chat";
license = licenses.gpl3;

View File

@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = with lib; {
broken = stdenv.isDarwin;
description = "Open Multicast Ping (omping) is a tool for testing IPv4/IPv6 multicast connectivity on a LAN";
license = licenses.mit;
platforms = platforms.unix;

View File

@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
];
meta = {
broken = stdenv.isDarwin;
description = "Client for many p2p networks, with multiple frontends";
homepage = "http://mldonkey.sourceforge.net/";
license = lib.licenses.gpl2Only;

View File

@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
dontPatchELF = true;
meta = with lib; {
broken = stdenv.isDarwin;
description = "A multimedia communication library written in C, implementing standard based protocols such as SIP, SDP, RTP, STUN, TURN, and ICE";
homepage = "https://pjsip.org/";
license = licenses.gpl2Plus;

View File

@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, python3Packages, gettext, gdk-pixbuf
{ stdenv, lib, fetchFromGitHub, python3Packages, gettext, gdk-pixbuf
, gobject-introspection, gtk3, wrapGAppsHook }:
with lib;
@ -35,6 +35,7 @@ python3Packages.buildPythonApplication rec {
doCheck = false;
meta = {
broken = stdenv.isDarwin;
description = "A graphical client for the SoulSeek peer-to-peer system";
homepage = "https://www.nicotine-plus.org";
license = licenses.gpl3Plus;

View File

@ -50,6 +50,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://ledger-cli.org/";
description = "A double-entry accounting system with a command-line reporting interface";
license = licenses.bsd3;

View File

@ -1,4 +1,5 @@
{ lib
{ stdenv
, lib
, python3
, glibcLocales
, installShellFiles
@ -75,6 +76,7 @@ buildPythonApplication rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://github.com/pimutils/todoman";
description = "Standards-based task manager based on iCalendar";
longDescription = ''

View File

@ -29,6 +29,7 @@ stdenv.mkDerivation rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://github.com/jketterl/csdr";
description = "A simple DSP library and command-line tool for Software Defined Radio";
license = licenses.gpl3Only;

View File

@ -48,6 +48,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "A simple Mode S decoder for RTLSDR devices";
homepage = "https://github.com/flightaware/dump1090";
license = licenses.gpl2Plus;

View File

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub, libpulseaudio }:
{ stdenv, lib, buildGoModule, fetchFromGitHub, libpulseaudio }:
buildGoModule rec {
pname = "flex-ndax";
@ -16,6 +16,7 @@ buildGoModule rec {
vendorSha256 = "sha256-u/5LiVo/ZOefprEKr/L1+3+OfYb0a4wq+CWoUjYNvzg=";
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://github.com/kc2g-flex-tools/nDAX";
description = "FlexRadio digital audio transport (DAX) connector for PulseAudio";
license = licenses.mit;

View File

@ -112,6 +112,7 @@ rec {
doCheck = false;
meta = with lib; {
broken = stdenv.isDarwin;
description = "Software Defined Radio (SDR) software";
longDescription = ''
GNU Radio is a free & open-source software development toolkit that

View File

@ -44,6 +44,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description =
"SPLAT! is an RF Signal Propagation, Loss, And Terrain analysis tool for the electromagnetic spectrum between 20 MHz and 20 GHz";
license = licenses.gpl2Only;

View File

@ -143,6 +143,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "USRP Hardware Driver (for Software Defined Radio)";
longDescription = ''
The USRP Hardware Driver (UHD) software is the hardware driver for all

View File

@ -50,6 +50,7 @@ stdenv.mkDerivation rec {
'';
meta = {
broken = stdenv.isDarwin;
description = "Radioastronomy data analysis software";
longDescription = ''
GILDAS is a collection of state-of-the-art software

View File

@ -29,6 +29,7 @@ mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Free open-source planetarium";
homepage = "http://stellarium.org/";
license = licenses.gpl2;

View File

@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Computational Morphometry Toolkit ";
longDescription = ''A software toolkit for computational morphometry of
biomedical images, CMTK comprises a set of command line tools and a

View File

@ -1,4 +1,4 @@
{ lib, gccStdenv, fetchurl, zlib, mpi }:
{ stdenv, lib, gccStdenv, fetchurl, zlib, mpi }:
gccStdenv.mkDerivation rec {
version = "3.7.2";
@ -15,6 +15,7 @@ gccStdenv.mkDerivation rec {
preInstall = "mkdir -p $out/man/man1";
meta = with lib; {
broken = stdenv.isDarwin;
description = "Estimates population size, migration, population splitting parameters using genetic/genomic data";
homepage = "https://peterbeerli.com/migrate-html5/index.html";
license = licenses.mit;

View File

@ -71,6 +71,7 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ readline ncurses which libtool ];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Simulation environment for empirically-based simulations of neurons and networks of neurons";
longDescription = "NEURON is a simulation environment for developing and exercising models of

View File

@ -30,6 +30,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "High-performance read alignment, quantification and mutation discovery";
license = licenses.gpl3;
maintainers = with maintainers; [ jbedo ];

View File

@ -25,6 +25,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Short read sequence mapper";
license = licenses.gpl3;
homepage = "https://github.com/refresh-bio/whisper";

View File

@ -1,4 +1,5 @@
{ lib
{ stdenv
, lib
, fetchFromGitHub
, makeDesktopItem
, python3
@ -67,6 +68,7 @@ python3Packages.buildPythonApplication rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
inherit description;
homepage = "https://www.pymol.org/";
license = licenses.mit;

View File

@ -19,6 +19,7 @@ stdenv.mkDerivation rec {
buildInputs = [ gtk3 ];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Gtk Analog Wave viewer";
longDescription = ''
Gaw is a software tool for displaying analog waveforms from

View File

@ -29,6 +29,7 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Schematic capture and netlisting EDA tool";
longDescription = ''
Xschem is a schematic capture program, it allows creation of

View File

@ -168,6 +168,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "High-performance analog circuit simulator";
longDescription = ''
Xyce is a SPICE-compatible, high-performance analog circuit simulator,

View File

@ -23,6 +23,7 @@ buildDotnetModule rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Formal Specifications for Verification and Synthesis";
homepage = "https://github.com/VUISIS/formula-dotnet";
license = licenses.mspl;

View File

@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
dontWrapQtApps = true;
meta = with lib; {
broken = stdenv.isDarwin;
description = "A toolset for model-checking concurrent systems and protocols";
longDescription = ''
A formal specification language with an associated toolset,

View File

@ -22,6 +22,7 @@ stdenv.mkDerivation {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "An open, trustable and efficient SMT-solver";
homepage = "https://verit.loria.fr/";
license = licenses.bsd3;

View File

@ -25,6 +25,7 @@ stdenv.mkDerivation rec {
configureFlags = [ "--disable-rpath" ];
meta = with lib; {
broken = stdenv.isDarwin;
description = "GiNaC is Not a CAS";
homepage = "https://www.ginac.de/";
maintainers = with maintainers; [ lovek323 ];

View File

@ -203,6 +203,7 @@ buildPythonApplication rec {
passthru.tests.test = nixosTests.terminal-emulators.kitty;
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://github.com/kovidgoyal/kitty";
description = "A modern, hackable, featureful, OpenGL based terminal emulator";
license = licenses.gpl3Only;

View File

@ -1,4 +1,5 @@
{ lib
{ stdenv
, lib
, fetchFromGitHub
, installShellFiles
, python3Packages
@ -65,6 +66,7 @@ python3Packages.buildPythonApplication rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "A patch manager implemented on top of Git";
homepage = "https://stacked-git.github.io/";
license = licenses.gpl2Only;

View File

@ -1,4 +1,4 @@
{ lib, buildPythonApplication, fetchFromGitHub, pycurl, python-dateutil, configobj, sqlalchemy, sdnotify, flask }:
{ stdenv, lib, buildPythonApplication, fetchFromGitHub, pycurl, python-dateutil, configobj, sqlalchemy, sdnotify, flask }:
buildPythonApplication rec {
pname = "pyca";
@ -21,6 +21,7 @@ buildPythonApplication rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "A fully functional Opencast capture agent written in Python";
homepage = "https://github.com/opencast/pyCA";
license = licenses.lgpl3;