nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #173671 from Mindavi/treewide/broken-zhf

treewide: start marking packages broken

authored by

Janne Heß and committed by
GitHub
bfc5086a 90ce1f86

+827 -205
+3
pkgs/applications/audio/CHOWTapeModel/default.nix
··· 74 74 license = with licenses; [ gpl3Only ]; 75 75 maintainers = with maintainers; [ magnetophon ]; 76 76 platforms = platforms.linux; 77 + # error: 'vvtanh' was not declared in this scope; did you mean 'tanh'? 78 + # error: no matching function for call to 'juce::dsp::SIMDRegister<double>::SIMDRegister(xsimd::simd_batch_traits<xsimd::batch<double, 2> >::batch_bool_type)' 79 + broken = stdenv.isAarch64; # since 2021-12-27 on hydra (update to 2.10): https://hydra.nixos.org/build/162558991 77 80 }; 78 81 }
+3
pkgs/applications/audio/cardinal/default.nix
··· 63 63 license = lib.licenses.gpl3; 64 64 maintainers = [ lib.maintainers.magnetophon ]; 65 65 platforms = lib.platforms.all; 66 + # ../../utils/CarlaPluginUI.cpp:31:10: fatal error: 'Cocoa/Cocoa.h' file not found 67 + # # import <Cocoa/Cocoa.h> 68 + broken = stdenv.isDarwin; 66 69 }; 67 70 }
+1
pkgs/applications/audio/drumgizmo/default.nix
··· 21 21 ]; 22 22 23 23 meta = with lib; { 24 + broken = (stdenv.isLinux && stdenv.isAarch64); 24 25 description = "An LV2 sample based drum plugin"; 25 26 homepage = "https://www.drumgizmo.org"; 26 27 license = licenses.lgpl3Plus;
+1
pkgs/applications/audio/eq10q/default.nix
··· 33 33 ''; 34 34 35 35 meta = { 36 + broken = (stdenv.isLinux && stdenv.isAarch64); 36 37 description = "LV2 EQ plugins and more, with 64 bit processing"; 37 38 longDescription = '' 38 39 Up to 10-Bands parametric equalizer with mono and stereo versions.
+1
pkgs/applications/audio/faustStk/default.nix
··· 30 30 done 31 31 ''; 32 32 meta = with lib; { 33 + broken = (stdenv.isLinux && stdenv.isAarch64); 33 34 description = "The physical modeling instruments included with faust, compiled as jack standalone and lv2 instruments"; 34 35 homepage = "https://ccrma.stanford.edu/~rmichon/faustSTK/"; 35 36 license = licenses.stk;
+3 -1
pkgs/applications/audio/jamesdsp/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , mkDerivation 3 4 , fetchFromGitHub 4 5 , pipewire ··· 87 86 ]; 88 87 89 88 meta = with lib;{ 89 + broken = (stdenv.isLinux && stdenv.isAarch64); 90 90 description = "An audio effect processor for PipeWire clients"; 91 91 homepage = "https://github.com/Audio4Linux/JDSP4Linux"; 92 92 license = licenses.gpl3Only;
+2 -1
pkgs/applications/audio/jellycli/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule, alsa-lib }: 1 + { stdenv, lib, fetchFromGitHub, buildGoModule, alsa-lib }: 2 2 3 3 buildGoModule rec { 4 4 pname = "jellycli"; ··· 21 21 buildInputs = [ alsa-lib ]; 22 22 23 23 meta = with lib; { 24 + broken = (stdenv.isLinux && stdenv.isAarch64); 24 25 description = "Jellyfin terminal client"; 25 26 longDescription = '' 26 27 Terminal music player, works with Jellyfin (>= 10.6) , Emby (>= 4.4), and
+3 -1
pkgs/applications/audio/mopidy/local.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , mopidy 3 4 , python3Packages 4 5 }: ··· 23 22 ]; 24 23 25 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 26 26 homepage = "https://github.com/mopidy/mopidy-local"; 27 27 description = "Mopidy extension for playing music from your local music archive"; 28 28 license = licenses.asl20;
+1
pkgs/applications/audio/muso/default.nix
··· 29 29 cargoSha256 = "1hgdzyz005244f2mh97js9ga0a6s2hcd6iydz07f1hmhsh1j2bwy"; 30 30 31 31 meta = with lib; { 32 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 32 33 description = "An automatic music sorter (based on ID3 tags)"; 33 34 homepage = "https://github.com/quebin31/muso"; 34 35 license = with licenses; [ gpl3Plus ];
+3 -1
pkgs/applications/audio/myxer/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , rustPlatform 3 4 , fetchFromGitHub 4 5 , pkg-config ··· 30 29 doCheck = false; 31 30 32 31 meta = with lib; { 32 + broken = (stdenv.isLinux && stdenv.isAarch64); 33 33 description = "A modern Volume Mixer for PulseAudio"; 34 34 homepage = "https://github.com/Aurailus/Myxer"; 35 35 license = licenses.gpl3Only;
+1
pkgs/applications/audio/nootka/unstable.nix
··· 44 44 ]; 45 45 46 46 meta = with lib; { 47 + broken = (stdenv.isLinux && stdenv.isAarch64); 47 48 description = "Application for practicing playing musical scores and ear training"; 48 49 homepage = "https://nootka.sourceforge.io/"; 49 50 license = licenses.gpl3Plus;
+1
pkgs/applications/audio/nova-filters/default.nix
··· 22 22 ''; 23 23 24 24 meta = with lib; { 25 + broken = (stdenv.isLinux && stdenv.isAarch64); 25 26 description = "LADSPA plugins based on filters of nova"; 26 27 homepage = "http://klingt.org/~tim/nova-filters/"; 27 28 license = licenses.gpl2Plus;
+1
pkgs/applications/audio/open-music-kontrollers/generic.nix
··· 28 28 ] ++ additionalBuildInputs; 29 29 30 30 meta = with lib; { 31 + broken = stdenv.isDarwin; 31 32 description = description; 32 33 homepage = "https://open-music-kontrollers.ch/lv2/${pname}:"; 33 34 license = licenses.artistic2;
+1
pkgs/applications/audio/pd-plugins/helmholtz/default.nix
··· 38 38 ''; 39 39 40 40 meta = { 41 + broken = (stdenv.isLinux && stdenv.isAarch64); 41 42 description = "Time domain pitch tracker for Pure Data"; 42 43 homepage = "http://www.katjaas.nl/helmholtz/helmholtz.html"; 43 44 license = lib.licenses.bsd3;
+2 -1
pkgs/applications/audio/pithos/default.nix
··· 1 - { lib, fetchFromGitHub, meson, ninja, pkg-config, appstream-glib 1 + { stdenv, lib, fetchFromGitHub, meson, ninja, pkg-config, appstream-glib 2 2 , wrapGAppsHook, pythonPackages, gtk3, gnome, gobject-introspection 3 3 , libnotify, libsecret, gst_all_1 }: 4 4 ··· 28 28 (with pythonPackages; [ pygobject3 pylast ]); 29 29 30 30 meta = with lib; { 31 + broken = stdenv.isDarwin; 31 32 description = "Pandora Internet Radio player for GNOME"; 32 33 homepage = "https://pithos.github.io/"; 33 34 license = licenses.gpl3;
+1
pkgs/applications/audio/plugin-torture/default.nix
··· 21 21 ''; 22 22 23 23 meta = with lib; { 24 + broken = (stdenv.isLinux && stdenv.isAarch64); 24 25 homepage = "https://github.com/cth103/plugin-torture"; 25 26 description = "A tool to test LADSPA and LV2 plugins"; 26 27 license = licenses.gpl2;
+2 -1
pkgs/applications/audio/polyphone/default.nix
··· 1 - { lib, mkDerivation, fetchFromGitHub, qmake, pkg-config, alsa-lib, libjack2, portaudio, libogg, flac, libvorbis, rtmidi, qtsvg }: 1 + { stdenv, lib, mkDerivation, fetchFromGitHub, qmake, pkg-config, alsa-lib, libjack2, portaudio, libogg, flac, libvorbis, rtmidi, qtsvg }: 2 2 3 3 mkDerivation rec { 4 4 version = "2.2.0"; ··· 40 40 ]; 41 41 42 42 meta = with lib; { 43 + broken = (stdenv.isLinux && stdenv.isAarch64); 43 44 description = "A soundfont editor for creating musical instruments"; 44 45 homepage = "https://www.polyphone-soundfonts.com/"; 45 46 license = licenses.gpl3;
+1
pkgs/applications/audio/quadrafuzz/default.nix
··· 34 34 ''; 35 35 36 36 meta = with lib; { 37 + broken = (stdenv.isLinux && stdenv.isAarch64); 37 38 homepage = "https://github.com/jpcima/quadrafuzz"; 38 39 description = "Multi-band fuzz distortion plugin"; 39 40 maintainers = [ maintainers.magnetophon ];
+1
pkgs/applications/audio/sfxr/default.nix
··· 46 46 makeFlags = [ "DESTDIR=$(out)" ]; 47 47 48 48 meta = with lib; { 49 + broken = stdenv.isDarwin; 49 50 homepage = "http://www.drpetter.se/project_sfxr.html"; 50 51 description = "A videogame sound effect generator"; 51 52 license = licenses.mit;
+1
pkgs/applications/audio/sorcer/default.nix
··· 26 26 ''; 27 27 28 28 meta = with lib; { 29 + broken = (stdenv.isLinux && stdenv.isAarch64); 29 30 homepage = "http://openavproductions.com/sorcer/"; 30 31 description = "A wavetable LV2 plugin synth, targeted at the electronic / dubstep genre"; 31 32 license = licenses.gpl3Plus;
+1
pkgs/applications/audio/speech-denoiser/default.nix
··· 35 35 ''; 36 36 37 37 meta = with lib; { 38 + broken = (stdenv.isLinux && stdenv.isAarch64); 38 39 description = "Speech denoise lv2 plugin based on RNNoise library"; 39 40 homepage = "https://github.com/lucianodato/speech-denoiser"; 40 41 license = licenses.lgpl3;
+1
pkgs/applications/audio/stone-phaser/default.nix
··· 25 25 installFlags = [ "PREFIX=$(out)" ]; 26 26 27 27 meta = with lib; { 28 + broken = (stdenv.isLinux && stdenv.isAarch64); 28 29 homepage = "https://github.com/jpcima/stone-phaser"; 29 30 description = "A classic analog phaser effect, made with DPF and Faust"; 30 31 maintainers = [ maintainers.magnetophon ];
+1
pkgs/applications/audio/wavegain/default.nix
··· 28 28 ''; 29 29 30 30 meta = { 31 + broken = (stdenv.isLinux && stdenv.isAarch64); 31 32 description = "ReplayGain for wave files"; 32 33 homepage = "https://github.com/MestreLion/wavegain"; 33 34 license = lib.licenses.lgpl21;
+1
pkgs/applications/audio/x42-avldrums/default.nix
··· 22 22 enableParallelBuilding = true; 23 23 24 24 meta = with lib; { 25 + broken = (stdenv.isLinux && stdenv.isAarch64); 25 26 description = "Drum sample player LV2 plugin dedicated to Glen MacArthur's AVLdrums"; 26 27 homepage = "https://x42-plugins.com/x42/x42-avldrums"; 27 28 maintainers = with maintainers; [ magnetophon orivej ];
+1
pkgs/applications/audio/x42-gmsynth/default.nix
··· 21 21 enableParallelBuilding = true; 22 22 23 23 meta = with lib; { 24 + broken = (stdenv.isLinux && stdenv.isAarch64); 24 25 description = "Chris Colins' General User soundfont player LV2 plugin"; 25 26 homepage = "https://x42-plugins.com/x42/x42-gmsynth"; 26 27 maintainers = with maintainers; [ orivej ];
+1 -1
pkgs/applications/blockchains/litecoin/default.nix
··· 35 35 enableParallelBuilding = true; 36 36 37 37 meta = { 38 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 38 39 description = "A lite version of Bitcoin using scrypt as a proof-of-work algorithm"; 39 40 longDescription= '' 40 41 Litecoin is a peer-to-peer Internet currency that enables instant payments ··· 49 48 homepage = "https://litecoin.org/"; 50 49 platforms = platforms.unix; 51 50 license = licenses.mit; 52 - broken = stdenv.isDarwin; 53 51 maintainers = with maintainers; [ offline ]; 54 52 }; 55 53 }
+1
pkgs/applications/blockchains/openethereum/default.nix
··· 41 41 checkFlags = "--skip configuration::tests::should_resolve_external_nat_hosts"; 42 42 43 43 meta = with lib; { 44 + broken = stdenv.isDarwin; 44 45 description = "Fast, light, robust Ethereum implementation"; 45 46 homepage = "http://parity.io/ethereum"; 46 47 license = licenses.gpl3;
+1
pkgs/applications/blockchains/particl-core/default.nix
··· 43 43 enableParallelBuilding = true; 44 44 45 45 meta = { 46 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 46 47 description = "Privacy-Focused Marketplace & Decentralized Application Platform"; 47 48 longDescription = '' 48 49 An open source, decentralized privacy platform built for global person to person eCommerce.
+1
pkgs/applications/blockchains/pivx/default.nix
··· 64 64 ''; 65 65 66 66 meta = with lib; { 67 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 67 68 description = "An open source crypto-currency focused on fast private transactions"; 68 69 longDescription = '' 69 70 PIVX is an MIT licensed, open source, blockchain-based cryptocurrency with
+2
pkgs/applications/editors/jetbrains/default.nix
··· 137 137 inherit pname version src wmClass jdk product; 138 138 productShort = "MPS"; 139 139 meta = with lib; { 140 + broken = (stdenv.isLinux && stdenv.isAarch64); 140 141 homepage = "https://www.jetbrains.com/mps/"; 141 142 inherit license description platforms; 142 143 longDescription = '' ··· 171 170 inherit pname version src wmClass jdk product; 172 171 productShort = "PyCharm"; 173 172 meta = with lib; { 173 + broken = (stdenv.isLinux && stdenv.isAarch64); 174 174 homepage = "https://www.jetbrains.com/pycharm/"; 175 175 inherit description license platforms; 176 176 longDescription = ''
+1 -1
pkgs/applications/editors/libresprite/default.nix
··· 106 106 maintainers = with maintainers; [ fgaz ]; 107 107 platforms = platforms.all; 108 108 # https://github.com/LibreSprite/LibreSprite/issues/308 109 - broken = stdenv.isDarwin && stdenv.isAarch64; 109 + broken = stdenv.isDarwin; 110 110 }; 111 111 }
+1
pkgs/applications/editors/mle/default.nix
··· 35 35 ''; 36 36 37 37 meta = with lib; { 38 + broken = (stdenv.isLinux && stdenv.isAarch64); 38 39 description = "Small, flexible terminal-based text editor"; 39 40 homepage = "https://github.com/adsr/mle"; 40 41 license = licenses.asl20;
+1
pkgs/applications/editors/qxmledit/default.nix
··· 22 22 dontWrapQtApps = true; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 description = "Simple XML editor based on qt libraries" ; 26 27 homepage = "https://sourceforge.net/projects/qxmledit"; 27 28 license = licenses.lgpl2;
+1
pkgs/applications/editors/rstudio/default.nix
··· 202 202 ''; 203 203 204 204 meta = with lib; { 205 + broken = (stdenv.isLinux && stdenv.isAarch64); 205 206 inherit description; 206 207 homepage = "https://www.rstudio.com/"; 207 208 license = licenses.agpl3Only;
+3
pkgs/applications/emulators/bsnes/bsnes-hd/default.nix
··· 59 59 license = licenses.gpl3Only; 60 60 maintainers = with maintainers; [ stevebob ]; 61 61 platforms = platforms.unix; 62 + # ../nall/traits.hpp:19:14: error: no member named 'is_floating_point_v' in namespace 'std'; did you mean 'is_floating_point'? 63 + # using std::is_floating_point_v; 64 + broken = (stdenv.isDarwin && stdenv.isx86_64); 62 65 mainProgram = "bsnes"; 63 66 }; 64 67 }
+1
pkgs/applications/emulators/citra/generic.nix
··· 87 87 ''; 88 88 89 89 meta = with lib; { 90 + broken = (stdenv.isLinux && stdenv.isAarch64); 90 91 homepage = "https://citra-emu.org"; 91 92 description = "The ${branch} branch of an open-source emulator for the Ninteno 3DS"; 92 93 longDescription = ''
+1
pkgs/applications/emulators/goldberg-emu/default.nix
··· 37 37 ''; 38 38 39 39 meta = with lib; { 40 + broken = stdenv.isDarwin; 40 41 homepage = "https://gitlab.com/Mr_Goldberg/goldberg_emulator"; 41 42 changelog = "https://gitlab.com/Mr_Goldberg/goldberg_emulator/-/releases"; 42 43 description = "Program that emulates steam online features";
+1
pkgs/applications/emulators/mame/default.nix
··· 146 146 ''; 147 147 148 148 meta = with lib; { 149 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 149 150 description = "Is a multi-purpose emulation framework"; 150 151 homepage = "https://www.mamedev.org/"; 151 152 license = with licenses; [ bsd3 gpl2Plus ];
+1
pkgs/applications/emulators/pcsxr/default.nix
··· 86 86 ''; 87 87 88 88 meta = with lib; { 89 + broken = stdenv.isDarwin; 89 90 description = "Playstation 1 emulator"; 90 91 homepage = "https://github.com/iCatButler/pcsxr"; 91 92 maintainers = with maintainers; [ rardiol ];
+1
pkgs/applications/gis/openorienteering-mapper/default.nix
··· 81 81 ''; 82 82 83 83 meta = with lib; { 84 + broken = stdenv.isDarwin; 84 85 description = '' 85 86 OpenOrienteering Mapper is an orienteering mapmaking program 86 87 and provides a free alternative to the existing proprietary solution.
+1
pkgs/applications/graphics/djview/default.nix
··· 44 44 }; 45 45 46 46 meta = with lib; { 47 + broken = stdenv.isDarwin; 47 48 description = "A portable DjVu viewer (Qt5) and browser (nsdejavu) plugin"; 48 49 homepage = "http://djvu.sourceforge.net/djview4.html"; 49 50 license = licenses.gpl2;
+1
pkgs/applications/graphics/weylus/default.nix
··· 78 78 ''; 79 79 80 80 meta = with lib; { 81 + broken = stdenv.isDarwin; 81 82 description = "Use your tablet as graphic tablet/touch screen on your computer"; 82 83 homepage = "https://github.com/H-M-H/Weylus"; 83 84 license = with licenses; [ agpl3Only ];
+2
pkgs/applications/misc/blender/default.nix
··· 159 159 ''; 160 160 161 161 meta = with lib; { 162 + # darwin.patch doesn't apply anymore, needs update 163 + broken = stdenv.isDarwin; 162 164 description = "3D Creation/Animation/Publishing System"; 163 165 homepage = "https://www.blender.org"; 164 166 # They comment two licenses: GPLv2 and Blender License, but they
+2 -1
pkgs/applications/misc/coolreader/default.nix
··· 1 - { mkDerivation, fetchFromGitHub, cmake, pkg-config, lib, 1 + { stdenv, mkDerivation, fetchFromGitHub, cmake, pkg-config, lib, 2 2 qttools, fribidi, libunibreak }: 3 3 4 4 mkDerivation rec { ··· 17 17 buildInputs = [ qttools fribidi libunibreak ]; 18 18 19 19 meta = with lib; { 20 + broken = stdenv.isDarwin; 20 21 homepage = "https://github.com/buggins/coolreader"; 21 22 description = "Cross platform open source e-book reader"; 22 23 license = licenses.gpl2Plus; # see https://github.com/buggins/coolreader/issues/80
+1
pkgs/applications/misc/cubiomes-viewer/default.nix
··· 57 57 ''; 58 58 59 59 meta = with lib; { 60 + broken = stdenv.isDarwin; 60 61 homepage = "https://github.com/Cubitect/cubiomes-viewer"; 61 62 description = "A graphical Minecraft seed finder and map viewer"; 62 63 longDescription = ''
+2 -1
pkgs/applications/misc/dupeguru/default.nix
··· 1 - {lib, python3Packages, gettext, qt5, fetchFromGitHub}: 1 + { stdenv, lib, python3Packages, gettext, qt5, fetchFromGitHub}: 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "dupeguru"; ··· 57 57 ''; 58 58 59 59 meta = with lib; { 60 + broken = stdenv.isDarwin; 60 61 description = "GUI tool to find duplicate files in a system"; 61 62 homepage = "https://github.com/arsenetar/dupeguru"; 62 63 license = licenses.bsd3;
+1
pkgs/applications/misc/firestarter/default.nix
··· 99 99 ''; 100 100 101 101 meta = with lib; { 102 + broken = (stdenv.isLinux && stdenv.isAarch64); 102 103 homepage = "https://tu-dresden.de/zih/forschung/projekte/firestarter"; 103 104 description = "Processor Stress Test Utility"; 104 105 platforms = platforms.linux;
+1
pkgs/applications/misc/gpsbabel/default.nix
··· 56 56 + lib.optionalString stdenv.isAarch64 "rm -v testo.d/arc-project.test"; 57 57 58 58 meta = with lib; { 59 + broken = stdenv.isDarwin; 59 60 description = "Convert, upload and download data from GPS and Map programs"; 60 61 longDescription = '' 61 62 GPSBabel converts waypoints, tracks, and routes between popular
+2 -1
pkgs/applications/misc/hugo/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 1 + { stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles }: 2 2 3 3 buildGoModule rec { 4 4 pname = "hugo"; ··· 33 33 ''; 34 34 35 35 meta = with lib; { 36 + broken = stdenv.isDarwin; 36 37 description = "A fast and modern static website engine"; 37 38 homepage = "https://gohugo.io"; 38 39 license = licenses.asl20;
+1
pkgs/applications/misc/jp2a/default.nix
··· 34 34 installFlags = [ "bashcompdir=\${out}/share/bash-completion/completions" ]; 35 35 36 36 meta = with lib; { 37 + broken = stdenv.isDarwin; 37 38 homepage = "https://csl.name/jp2a/"; 38 39 description = "A small utility that converts JPG images to ASCII"; 39 40 license = licenses.gpl2Only;
+1
pkgs/applications/misc/khal/default.nix
··· 57 57 ]; 58 58 59 59 meta = with lib; { 60 + broken = stdenv.isDarwin; 60 61 homepage = "http://lostpackets.de/khal/"; 61 62 description = "CLI calendar application"; 62 63 license = licenses.mit;
+1
pkgs/applications/misc/ola/default.nix
··· 37 37 enableParallelBuilding = true; 38 38 39 39 meta = with lib; { 40 + broken = stdenv.isDarwin; 40 41 description = "A framework for controlling entertainment lighting equipment"; 41 42 homepage = "https://www.openlighting.org/ola/"; 42 43 maintainers = with maintainers; [ globin ];
+2 -1
pkgs/applications/misc/organicmaps/default.nix
··· 75 75 ''; 76 76 77 77 meta = with lib; { 78 + # darwin: "invalid application of 'sizeof' to a function type" 79 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 78 80 homepage = "https://organicmaps.app/"; 79 81 description = "Detailed Offline Maps for Travellers, Tourists, Hikers and Cyclists"; 80 82 license = licenses.asl20; 81 83 maintainers = with maintainers; [ fgaz ]; 82 84 platforms = platforms.all; 83 85 mainProgram = "OMaps"; 84 - broken = stdenv.isDarwin; # "invalid application of 'sizeof' to a function type" 85 86 }; 86 87 }
+2
pkgs/applications/misc/plover/default.nix
··· 7 7 version = "3.1.1"; 8 8 9 9 meta = with lib; { 10 + broken = stdenv.isDarwin; 10 11 description = "OpenSteno Plover stenography software"; 11 12 maintainers = with maintainers; [ twey kovirobi ]; 12 13 license = licenses.gpl2; ··· 32 31 version = "4.0.0.dev10"; 33 32 34 33 meta = with lib; { 34 + broken = stdenv.isDarwin; 35 35 description = "OpenSteno Plover stenography software"; 36 36 maintainers = with maintainers; [ twey kovirobi ]; 37 37 license = licenses.gpl2;
+2 -1
pkgs/applications/misc/redis-desktop-manager/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, fetchFromGitiles, pkg-config, libssh2 1 + { stdenv, mkDerivation, lib, fetchFromGitHub, fetchFromGitiles, pkg-config, libssh2 2 2 , qtbase, qtdeclarative, qtgraphicaleffects, qtimageformats, qtquickcontrols2 3 3 , qtsvg, qttools, qtquick1, qtcharts 4 4 , qmake ··· 75 75 ''; 76 76 77 77 meta = with lib; { 78 + broken = (stdenv.isLinux && stdenv.isAarch64); 78 79 description = "Cross-platform open source Redis DB management tool"; 79 80 homepage = "https://redisdesktop.com/"; 80 81 license = licenses.gpl3Only;
+3 -1
pkgs/applications/misc/sigal/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , python3 3 4 , ffmpeg 4 5 }: ··· 41 40 ]; 42 41 43 42 meta = with lib; { 43 + broken = stdenv.isDarwin; 44 44 description = "Yet another simple static gallery generator"; 45 45 homepage = "http://sigal.saimon.org/"; 46 46 license = licenses.mit;
+1
pkgs/applications/misc/stag/default.nix
··· 18 18 ''; 19 19 20 20 meta = with lib; { 21 + broken = (stdenv.isLinux && stdenv.isAarch64); 21 22 homepage = "https://github.com/seenaburns/stag"; 22 23 description = "Terminal streaming bar graph passed through stdin"; 23 24 license = licenses.bsdOriginal;
+1 -1
pkgs/applications/misc/tippecanoe/default.nix
··· 20 20 doCheck = true; 21 21 22 22 meta = with lib; { 23 + broken = stdenv.isDarwin || stdenv.isAarch64; 23 24 description = "Build vector tilesets from large collections of GeoJSON features"; 24 25 homepage = "https://github.com/mapbox/tippecanoe"; 25 26 license = licenses.bsd2; 26 27 maintainers = with maintainers; [ sikmir ]; 27 28 platforms = with platforms; linux ++ darwin; 28 - broken = stdenv.hostPlatform.isAarch64; 29 29 }; 30 30 }
+1
pkgs/applications/misc/tthsum/default.nix
··· 18 18 doCheck = !stdenv.isDarwin; 19 19 20 20 meta = with lib; { 21 + broken = stdenv.isDarwin; 21 22 description = "An md5sum-alike program that works with Tiger/THEX hashes"; 22 23 longDescription = '' 23 24 tthsum generates or checks TTH checksums (root of the THEX hash
+1
pkgs/applications/misc/usb-reset/default.nix
··· 31 31 ]; 32 32 33 33 meta = with lib; { 34 + broken = stdenv.isDarwin; 34 35 description = "Perform a bus reset on a USB device using its vendor and product ID"; 35 36 homepage = "https://github.com/ralight/usb-reset"; 36 37 changelog = "https://github.com/ralight/usb-reset/blob/master/ChangeLog.txt";
+1
pkgs/applications/misc/workrave/default.nix
··· 31 31 enableParallelBuilding = true; 32 32 33 33 meta = with lib; { 34 + broken = (stdenv.isLinux && stdenv.isAarch64); 34 35 description = "A program to help prevent Repetitive Strain Injury"; 35 36 longDescription = '' 36 37 Workrave is a program that assists in the recovery and prevention of
+2 -1
pkgs/applications/misc/xca/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, autoreconfHook, pkg-config 1 + { stdenv, mkDerivation, lib, fetchFromGitHub, autoreconfHook, pkg-config 2 2 , libtool, openssl, qtbase, qttools, sphinx }: 3 3 4 4 mkDerivation rec { ··· 22 22 enableParallelBuilding = true; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 description = "An x509 certificate generation tool, handling RSA, DSA and EC keys, certificate signing requests (PKCS#10) and CRLs"; 26 27 homepage = "https://hohnstaedt.de/xca/"; 27 28 license = licenses.bsd3;
+1
pkgs/applications/misc/xmrig/default.nix
··· 28 28 ''; 29 29 30 30 meta = with lib; { 31 + broken = stdenv.isDarwin; 31 32 description = "Monero (XMR) CPU miner"; 32 33 homepage = "https://github.com/xmrig/xmrig"; 33 34 license = licenses.gpl3Plus;
+2 -1
pkgs/applications/misc/xmrig/moneroocean.nix
··· 1 - { fetchFromGitHub, lib, xmrig }: 1 + { stdenv, fetchFromGitHub, lib, xmrig }: 2 2 3 3 xmrig.overrideAttrs (oldAttrs: rec { 4 4 pname = "xmrig-mo"; ··· 12 12 }; 13 13 14 14 meta = with lib; { 15 + broken = stdenv.isDarwin; 15 16 description = "A fork of the XMRig CPU miner with support for algorithm switching"; 16 17 homepage = "https://github.com/MoneroOcean/xmrig"; 17 18 license = licenses.gpl3Plus;
+1
pkgs/applications/networking/cloudflared/default.nix
··· 29 29 doCheck = !stdenv.isDarwin; 30 30 31 31 meta = with lib; { 32 + broken = (stdenv.isLinux && stdenv.isAarch64); 32 33 description = "CloudFlare Tunnel daemon (and DNS-over-HTTPS client)"; 33 34 homepage = "https://www.cloudflare.com/products/tunnel"; 34 35 license = licenses.asl20;
+2 -1
pkgs/applications/networking/cluster/hubble/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 1 + { stdenv, lib, buildGoModule, fetchFromGitHub }: 2 2 3 3 buildGoModule rec { 4 4 pname = "hubble"; ··· 14 14 vendorSha256 = null; 15 15 16 16 meta = with lib; { 17 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 17 18 description = "Network, Service & Security Observability for Kubernetes using eBPF"; 18 19 license = licenses.asl20; 19 20 homepage = "https://github.com/cilium/hubble/";
+2 -1
pkgs/applications/networking/cluster/jx/default.nix
··· 1 - { buildGoModule, fetchFromGitHub, lib, installShellFiles }: 1 + { stdenv, buildGoModule, fetchFromGitHub, lib, installShellFiles }: 2 2 3 3 buildGoModule rec { 4 4 pname = "jx"; ··· 34 34 ''; 35 35 36 36 meta = with lib; { 37 + broken = stdenv.isDarwin; 37 38 description = "Command line tool for installing and using Jenkins X"; 38 39 homepage = "https://jenkins-x.io"; 39 40 longDescription = ''
+1
pkgs/applications/networking/cluster/spacegun/default.nix
··· 25 25 ''; 26 26 27 27 meta = with lib; { 28 + broken = stdenv.isDarwin; 28 29 description = "Version controlled multi-cluster deployment manager for kubernetes"; 29 30 maintainers = with maintainers; [ ]; 30 31 license = licenses.mit;
+1
pkgs/applications/networking/enhanced-ctorrent/default.nix
··· 22 22 ]; 23 23 24 24 meta = { 25 + broken = stdenv.isDarwin; 25 26 description = "BitTorrent client written in C++"; 26 27 longDescription = '' 27 28 CTorrent, a BitTorrent client implemented in C++, with bugfixes and
+1
pkgs/applications/networking/ike/default.nix
··· 52 52 ''; 53 53 54 54 meta = with lib; { 55 + broken = (stdenv.isLinux && stdenv.isAarch64); 55 56 homepage = "https://www.shrew.net/software"; 56 57 description = "IPsec Client for FreeBSD, NetBSD and many Linux based operating systems"; 57 58 platforms = platforms.unix;
+1
pkgs/applications/networking/instant-messengers/gurk-rs/default.nix
··· 22 22 PROTOC = "${protobuf}/bin/protoc"; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 description = "Signal Messenger client for terminal"; 26 27 homepage = "https://github.com/boxdot/gurk-rs"; 27 28 license = licenses.agpl3Only;
+1
pkgs/applications/networking/instant-messengers/qtox/default.nix
··· 69 69 ]; 70 70 71 71 meta = with lib; { 72 + broken = stdenv.isDarwin; 72 73 description = "Qt Tox client"; 73 74 homepage = "https://tox.chat"; 74 75 license = licenses.gpl3;
+1
pkgs/applications/networking/instant-messengers/telegram/kotatogram-desktop/default.nix
··· 217 217 }; 218 218 219 219 meta = { 220 + broken = (stdenv.isLinux && stdenv.isAarch64); 220 221 description = "Kotatogram – experimental Telegram Desktop fork"; 221 222 longDescription = '' 222 223 Unofficial desktop client for the Telegram messenger, based on Telegram Desktop.
+1
pkgs/applications/networking/irc/wraith/default.nix
··· 23 23 ''; 24 24 25 25 meta = with lib; { 26 + broken = (stdenv.isLinux && stdenv.isAarch64); 26 27 description = "An IRC channel management bot written purely in C/C++"; 27 28 longDescription = '' 28 29 Wraith is an IRC channel management bot written purely in C/C++. It has
+3 -1
pkgs/applications/networking/mailreaders/meli/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , fetchgit 3 4 , rustPlatform 4 5 , pkg-config ··· 49 48 ''; 50 49 51 50 meta = with lib; { 51 + broken = (stdenv.isLinux && stdenv.isAarch64); 52 52 description = "Experimental terminal mail client aiming for configurability and extensibility with sane defaults"; 53 53 homepage = "https://meli.delivery"; 54 54 license = licenses.gpl3;
+1
pkgs/applications/networking/omping/default.nix
··· 27 27 enableParallelBuilding = true; 28 28 29 29 meta = with lib; { 30 + broken = stdenv.isDarwin; 30 31 description = "Open Multicast Ping (omping) is a tool for testing IPv4/IPv6 multicast connectivity on a LAN"; 31 32 license = licenses.mit; 32 33 platforms = platforms.unix;
+1
pkgs/applications/networking/p2p/mldonkey/default.nix
··· 31 31 ]; 32 32 33 33 meta = { 34 + broken = stdenv.isDarwin; 34 35 description = "Client for many p2p networks, with multiple frontends"; 35 36 homepage = "http://mldonkey.sourceforge.net/"; 36 37 license = lib.licenses.gpl2Only;
+1
pkgs/applications/networking/pjsip/default.nix
··· 34 34 dontPatchELF = true; 35 35 36 36 meta = with lib; { 37 + broken = stdenv.isDarwin; 37 38 description = "A multimedia communication library written in C, implementing standard based protocols such as SIP, SDP, RTP, STUN, TURN, and ICE"; 38 39 homepage = "https://pjsip.org/"; 39 40 license = licenses.gpl2Plus;
+2 -1
pkgs/applications/networking/soulseek/nicotine-plus/default.nix
··· 1 - { lib, fetchFromGitHub, python3Packages, gettext, gdk-pixbuf 1 + { stdenv, lib, fetchFromGitHub, python3Packages, gettext, gdk-pixbuf 2 2 , gobject-introspection, gtk3, wrapGAppsHook }: 3 3 4 4 with lib; ··· 35 35 doCheck = false; 36 36 37 37 meta = { 38 + broken = stdenv.isDarwin; 38 39 description = "A graphical client for the SoulSeek peer-to-peer system"; 39 40 homepage = "https://www.nicotine-plus.org"; 40 41 license = licenses.gpl3Plus;
+1
pkgs/applications/networking/taler/default.nix
··· 14 14 }; 15 15 enableParallelBuilding = true; 16 16 meta = with lib; { 17 + broken = (stdenv.isLinux && stdenv.isAarch64); 17 18 description = "Anonymous, taxable payment system."; 18 19 homepage = "https://taler.net/"; 19 20 license = licenses.agpl3Plus;
+1
pkgs/applications/office/jabref/default.nix
··· 63 63 ''; 64 64 65 65 meta = with lib; { 66 + broken = (stdenv.isLinux && stdenv.isAarch64); 66 67 description = "Open source bibliography reference manager"; 67 68 homepage = "https://www.jabref.org"; 68 69 license = licenses.gpl2;
+1
pkgs/applications/office/ledger/default.nix
··· 50 50 ''; 51 51 52 52 meta = with lib; { 53 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 53 54 homepage = "https://ledger-cli.org/"; 54 55 description = "A double-entry accounting system with a command-line reporting interface"; 55 56 license = licenses.bsd3;
+3 -1
pkgs/applications/office/semantik/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , mkDerivation 3 4 , fetchFromGitLab 4 5 , wafHook ··· 82 81 ]; 83 82 84 83 meta = with lib; { 84 + broken = (stdenv.isLinux && stdenv.isAarch64); 85 85 description = "A mind-mapping application for KDE"; 86 86 license = licenses.mit; 87 87 homepage = "https://waf.io/semantik.html";
+3 -1
pkgs/applications/office/todoman/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , python3 3 4 , glibcLocales 4 5 , installShellFiles ··· 76 75 ]; 77 76 78 77 meta = with lib; { 78 + broken = stdenv.isDarwin; 79 79 homepage = "https://github.com/pimutils/todoman"; 80 80 description = "Standards-based task manager based on iCalendar"; 81 81 longDescription = ''
+1
pkgs/applications/radio/csdr/default.nix
··· 29 29 ]; 30 30 31 31 meta = with lib; { 32 + broken = stdenv.isDarwin; 32 33 homepage = "https://github.com/jketterl/csdr"; 33 34 description = "A simple DSP library and command-line tool for Software Defined Radio"; 34 35 license = licenses.gpl3Only;
+1
pkgs/applications/radio/dump1090/default.nix
··· 48 48 ''; 49 49 50 50 meta = with lib; { 51 + broken = stdenv.isDarwin; 51 52 description = "A simple Mode S decoder for RTLSDR devices"; 52 53 homepage = "https://github.com/flightaware/dump1090"; 53 54 license = licenses.gpl2Plus;
+2 -1
pkgs/applications/radio/flex-ndax/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, libpulseaudio }: 1 + { stdenv, lib, buildGoModule, fetchFromGitHub, libpulseaudio }: 2 2 3 3 buildGoModule rec { 4 4 pname = "flex-ndax"; ··· 16 16 vendorSha256 = "sha256-u/5LiVo/ZOefprEKr/L1+3+OfYb0a4wq+CWoUjYNvzg="; 17 17 18 18 meta = with lib; { 19 + broken = stdenv.isDarwin; 19 20 homepage = "https://github.com/kc2g-flex-tools/nDAX"; 20 21 description = "FlexRadio digital audio transport (DAX) connector for PulseAudio"; 21 22 license = licenses.mit;
+1
pkgs/applications/radio/gnuradio/shared.nix
··· 112 112 doCheck = false; 113 113 114 114 meta = with lib; { 115 + broken = stdenv.isDarwin; 115 116 description = "Software Defined Radio (SDR) software"; 116 117 longDescription = '' 117 118 GNU Radio is a free & open-source software development toolkit that
+1
pkgs/applications/radio/splat/default.nix
··· 44 44 ''; 45 45 46 46 meta = with lib; { 47 + broken = stdenv.isDarwin; 47 48 description = 48 49 "SPLAT! is an RF Signal Propagation, Loss, And Terrain analysis tool for the electromagnetic spectrum between 20 MHz and 20 GHz"; 49 50 license = licenses.gpl2Only;
+1
pkgs/applications/radio/uhd/3.5.nix
··· 143 143 ''; 144 144 145 145 meta = with lib; { 146 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 146 147 description = "USRP Hardware Driver (for Software Defined Radio)"; 147 148 longDescription = '' 148 149 The USRP Hardware Driver (UHD) software is the hardware driver for all
+1
pkgs/applications/science/astronomy/gildas/default.nix
··· 50 50 ''; 51 51 52 52 meta = { 53 + broken = stdenv.isDarwin; 53 54 description = "Radioastronomy data analysis software"; 54 55 longDescription = '' 55 56 GILDAS is a collection of state-of-the-art software
+1
pkgs/applications/science/astronomy/gravit/default.nix
··· 25 25 enableParallelBuilding = true; 26 26 27 27 meta = { 28 + broken = (stdenv.isLinux && stdenv.isAarch64); 28 29 homepage = "https://github.com/gak/gravit"; 29 30 description = "Beautiful OpenGL-based gravity simulator"; 30 31 license = lib.licenses.gpl2Plus;
+1
pkgs/applications/science/astronomy/stellarium/default.nix
··· 29 29 ''; 30 30 31 31 meta = with lib; { 32 + broken = stdenv.isDarwin; 32 33 description = "Free open-source planetarium"; 33 34 homepage = "http://stellarium.org/"; 34 35 license = licenses.gpl2;
+1
pkgs/applications/science/biology/cmtk/default.nix
··· 18 18 ]; 19 19 20 20 meta = with lib; { 21 + broken = stdenv.isDarwin; 21 22 description = "Computational Morphometry Toolkit "; 22 23 longDescription = ''A software toolkit for computational morphometry of 23 24 biomedical images, CMTK comprises a set of command line tools and a
+2 -1
pkgs/applications/science/biology/migrate/default.nix
··· 1 - { lib, gccStdenv, fetchurl, zlib, mpi }: 1 + { stdenv, lib, gccStdenv, fetchurl, zlib, mpi }: 2 2 3 3 gccStdenv.mkDerivation rec { 4 4 version = "3.7.2"; ··· 15 15 preInstall = "mkdir -p $out/man/man1"; 16 16 17 17 meta = with lib; { 18 + broken = stdenv.isDarwin; 18 19 description = "Estimates population size, migration, population splitting parameters using genetic/genomic data"; 19 20 homepage = "https://peterbeerli.com/migrate-html5/index.html"; 20 21 license = licenses.mit;
+1
pkgs/applications/science/biology/mrtrix/default.nix
··· 86 86 ''; 87 87 88 88 meta = with lib; { 89 + broken = (stdenv.isLinux && stdenv.isAarch64); 89 90 homepage = "https://github.com/MRtrix3/mrtrix3"; 90 91 description = "Suite of tools for diffusion imaging"; 91 92 maintainers = with maintainers; [ bcdarwin ];
+1
pkgs/applications/science/biology/muscle/default.nix
··· 24 24 ''; 25 25 26 26 meta = with lib; { 27 + broken = (stdenv.isLinux && stdenv.isAarch64); 27 28 description = "A multiple sequence alignment method with reduced time and space complexity"; 28 29 license = licenses.publicDomain; 29 30 homepage = "https://www.drive5.com/muscle/";
+1
pkgs/applications/science/biology/neuron/default.nix
··· 71 71 propagatedBuildInputs = [ readline ncurses which libtool ]; 72 72 73 73 meta = with lib; { 74 + broken = stdenv.isDarwin; 74 75 description = "Simulation environment for empirically-based simulations of neurons and networks of neurons"; 75 76 76 77 longDescription = "NEURON is a simulation environment for developing and exercising models of
+1
pkgs/applications/science/biology/subread/default.nix
··· 30 30 ''; 31 31 32 32 meta = with lib; { 33 + broken = stdenv.isDarwin; 33 34 description = "High-performance read alignment, quantification and mutation discovery"; 34 35 license = licenses.gpl3; 35 36 maintainers = with maintainers; [ jbedo ];
+1
pkgs/applications/science/biology/svaba/default.nix
··· 21 21 ''; 22 22 23 23 meta = with lib; { 24 + broken = (stdenv.isLinux && stdenv.isAarch64); 24 25 description = "Structural variant and INDEL caller for DNA sequencing data, using genome-wide local assembly"; 25 26 license = licenses.gpl3; 26 27 homepage = "https://github.com/walaj/svaba";
+1
pkgs/applications/science/biology/whisper/default.nix
··· 25 25 ''; 26 26 27 27 meta = with lib; { 28 + broken = stdenv.isDarwin; 28 29 description = "Short read sequence mapper"; 29 30 license = licenses.gpl3; 30 31 homepage = "https://github.com/refresh-bio/whisper";
+3 -1
pkgs/applications/science/chemistry/pymol/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , fetchFromGitHub 3 4 , makeDesktopItem 4 5 , python3 ··· 68 67 ''; 69 68 70 69 meta = with lib; { 70 + broken = stdenv.isDarwin; 71 71 inherit description; 72 72 homepage = "https://www.pymol.org/"; 73 73 license = licenses.mit;
+1
pkgs/applications/science/electronics/gaw/default.nix
··· 19 19 buildInputs = [ gtk3 ]; 20 20 21 21 meta = with lib; { 22 + broken = stdenv.isDarwin; 22 23 description = "Gtk Analog Wave viewer"; 23 24 longDescription = '' 24 25 Gaw is a software tool for displaying analog waveforms from
+1
pkgs/applications/science/electronics/xschem/default.nix
··· 29 29 hardeningDisable = [ "format" ]; 30 30 31 31 meta = with lib; { 32 + broken = stdenv.isDarwin; 32 33 description = "Schematic capture and netlisting EDA tool"; 33 34 longDescription = '' 34 35 Xschem is a schematic capture program, it allows creation of
+1
pkgs/applications/science/electronics/xyce/default.nix
··· 168 168 ''; 169 169 170 170 meta = with lib; { 171 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 171 172 description = "High-performance analog circuit simulator"; 172 173 longDescription = '' 173 174 Xyce is a SPICE-compatible, high-performance analog circuit simulator,
+2
pkgs/applications/science/logic/aspino/default.nix
··· 47 47 homepage = "https://alviano.net/software/maxino/"; 48 48 # See pkgs/applications/science/logic/glucose/default.nix 49 49 badPlatforms = [ "aarch64-linux" ]; 50 + # src/MaxSatSolver.cc:280:62: error: ordered comparison between pointer and zero ('unsigned int *' and 'int') 51 + broken = (stdenv.isDarwin && stdenv.isx86_64); # broken since 2019-05-07 on hydra 50 52 }; 51 53 }
+1
pkgs/applications/science/logic/formula/default.nix
··· 23 23 ''; 24 24 25 25 meta = with lib; { 26 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 26 27 description = "Formal Specifications for Verification and Synthesis"; 27 28 homepage = "https://github.com/VUISIS/formula-dotnet"; 28 29 license = licenses.mspl;
+1
pkgs/applications/science/logic/hol/default.nix
··· 66 66 ''; 67 67 68 68 meta = with lib; { 69 + broken = (stdenv.isLinux && stdenv.isAarch64); 69 70 description = "Interactive theorem prover based on Higher-Order Logic"; 70 71 longDescription = '' 71 72 HOL4 is the latest version of the HOL interactive proof
+1
pkgs/applications/science/logic/mcrl2/default.nix
··· 16 16 dontWrapQtApps = true; 17 17 18 18 meta = with lib; { 19 + broken = stdenv.isDarwin; 19 20 description = "A toolset for model-checking concurrent systems and protocols"; 20 21 longDescription = '' 21 22 A formal specification language with an associated toolset,
+1
pkgs/applications/science/logic/open-wbo/default.nix
··· 19 19 ''; 20 20 21 21 meta = with lib; { 22 + broken = (stdenv.isLinux && stdenv.isAarch64); 22 23 description = "State-of-the-art MaxSAT and Pseudo-Boolean solver"; 23 24 maintainers = with maintainers; [ gebner ]; 24 25 platforms = platforms.unix;
+1
pkgs/applications/science/logic/opensmt/default.nix
··· 29 29 ]; 30 30 31 31 meta = with lib; { 32 + broken = (stdenv.isLinux && stdenv.isAarch64); 32 33 description = "A satisfiability modulo theory (SMT) solver"; 33 34 maintainers = [ maintainers.raskin ]; 34 35 platforms = platforms.linux;
+1
pkgs/applications/science/logic/vampire/default.nix
··· 47 47 ''; 48 48 49 49 meta = with lib; { 50 + broken = (stdenv.isLinux && stdenv.isAarch64); 50 51 homepage = "https://vprover.github.io/"; 51 52 description = "The Vampire Theorem Prover"; 52 53 platforms = platforms.unix;
+1
pkgs/applications/science/logic/verit/default.nix
··· 22 22 ''; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 description = "An open, trustable and efficient SMT-solver"; 26 27 homepage = "https://verit.loria.fr/"; 27 28 license = licenses.bsd3;
+1
pkgs/applications/science/math/ginac/default.nix
··· 25 25 configureFlags = [ "--disable-rpath" ]; 26 26 27 27 meta = with lib; { 28 + broken = stdenv.isDarwin; 28 29 description = "GiNaC is Not a CAS"; 29 30 homepage = "https://www.ginac.de/"; 30 31 maintainers = with maintainers; [ lovek323 ];
+2 -2
pkgs/applications/science/math/speedcrunch/default.nix
··· 1 - { mkDerivation, lib, fetchFromBitbucket, cmake, qtbase, qttools }: 1 + { stdenv, mkDerivation, lib, fetchFromBitbucket, cmake, qtbase, qttools }: 2 2 3 3 mkDerivation rec { 4 4 pname = "speedcrunch"; ··· 32 32 maintainers = with maintainers; [ gebner j0hax ]; 33 33 inherit (qtbase.meta) platforms; 34 34 # works with qt 5.6 and qt 5.8 35 - broken = builtins.compareVersions qtbase.version "5.7.0" == 0; 35 + broken = builtins.compareVersions qtbase.version "5.7.0" == 0 || stdenv.isDarwin; 36 36 }; 37 37 }
+4
pkgs/applications/science/misc/boinc/default.nix
··· 46 46 homepage = "https://boinc.berkeley.edu/"; 47 47 license = licenses.lgpl2Plus; 48 48 platforms = platforms.linux; # arbitrary choice 49 + # checking for gcc options needed to detect all undeclared functions... cannot detect 50 + # configure: error: in `/build/boinc-7.18.1-src': 51 + # configure: error: cannot make gcc report undeclared builtins 52 + broken = stdenv.isAarch64; 49 53 maintainers = with maintainers; [ Luflosi ]; 50 54 }; 51 55 }
+2 -1
pkgs/applications/science/misc/graphia/default.nix
··· 24 24 ]; 25 25 26 26 meta = with lib; { 27 + # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/graphia.x86_64-darwin 28 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 27 29 description = "A visualisation tool for the creation and analysis of graphs."; 28 30 homepage = "https://graphia.app"; 29 31 license = licenses.gpl3Only; 30 32 maintainers = [ maintainers.bgamari ]; 31 33 platforms = platforms.all; 32 - broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/graphia.x86_64-darwin 33 34 }; 34 35 }
+1
pkgs/applications/science/misc/openmvg/default.nix
··· 40 40 hardeningDisable = [ "all" ]; 41 41 42 42 meta = { 43 + broken = (stdenv.isLinux && stdenv.isAarch64); 43 44 description = "A library for computer-vision scientists and targeted for the Multiple View Geometry community"; 44 45 homepage = "https://openmvg.readthedocs.io/en/latest/"; 45 46 license = lib.licenses.mpl20;
+1
pkgs/applications/science/misc/tulip/default.nix
··· 20 20 doCheck = false; 21 21 22 22 meta = { 23 + broken = (stdenv.isLinux && stdenv.isAarch64); 23 24 description = "A visualization framework for the analysis and visualization of relational data"; 24 25 25 26 longDescription =
+1
pkgs/applications/science/physics/nnpdf/default.nix
··· 62 62 ]; 63 63 64 64 meta = with lib; { 65 + broken = (stdenv.isLinux && stdenv.isAarch64); 65 66 description = "An open-source machine learning framework for global analyses of parton distributions"; 66 67 homepage = "https://docs.nnpdf.science/"; 67 68 license = licenses.gpl3Only;
+2
pkgs/applications/terminal-emulators/contour/default.nix
··· 89 89 passthru.tests.test = nixosTests.terminal-emulators.contour; 90 90 91 91 meta = with lib; { 92 + # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/contour.x86_64-darwin 93 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 92 94 description = "Modern C++ Terminal Emulator"; 93 95 homepage = "https://github.com/contour-terminal/contour"; 94 96 changelog = "https://github.com/contour-terminal/contour/raw/v${version}/Changelog.md";
+1
pkgs/applications/terminal-emulators/kitty/default.nix
··· 203 203 passthru.tests.test = nixosTests.terminal-emulators.kitty; 204 204 205 205 meta = with lib; { 206 + broken = stdenv.isDarwin; 206 207 homepage = "https://github.com/kovidgoyal/kitty"; 207 208 description = "A modern, hackable, featureful, OpenGL based terminal emulator"; 208 209 license = licenses.gpl3Only;
+2 -1
pkgs/applications/terminal-emulators/syncterm/default.nix
··· 31 31 runtimeDependencies = [ ncurses SDL2 ]; # Both of these are dlopen()'ed at runtime. 32 32 33 33 meta = with lib; { 34 + # error: unsupported option '-fsanitize=safe-stack' for target 'x86_64-apple-darwin' 35 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 34 36 homepage = "https://syncterm.bbsdev.net/"; 35 37 description = "BBS terminal emulator"; 36 38 maintainers = with maintainers; [ embr ]; 37 39 platforms = platforms.unix; 38 40 license = licenses.gpl2Plus; 39 - broken = stdenv.isDarwin; # error: unsupported option '-fsanitize=safe-stack' for target 'x86_64-apple-darwin' 40 41 }; 41 42 }
+3 -1
pkgs/applications/version-management/git-and-tools/stgit/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , fetchFromGitHub 3 4 , installShellFiles 4 5 , python3Packages ··· 66 65 ''; 67 66 68 67 meta = with lib; { 68 + broken = stdenv.isDarwin; 69 69 description = "A patch manager implemented on top of Git"; 70 70 homepage = "https://stacked-git.github.io/"; 71 71 license = licenses.gpl2Only;
+2 -1
pkgs/applications/video/hyperion-ng/default.nix
··· 1 - { avahi-compat, cmake, fetchFromGitHub, flatbuffers, hidapi, lib, libcec 1 + { stdenv, avahi-compat, cmake, fetchFromGitHub, flatbuffers, hidapi, lib, libcec 2 2 , libusb1, libX11, libxcb, libXrandr, mbedtls, mkDerivation, protobuf, python3 3 3 , qtbase, qtserialport, qtsvg, qtx11extras, wrapQtAppsHook }: 4 4 ··· 41 41 ]; 42 42 43 43 meta = with lib; { 44 + broken = (stdenv.isLinux && stdenv.isAarch64); 44 45 description = "Open Source Ambilight solution"; 45 46 homepage = "https://github.com/hyperion-project/hyperion.ng"; 46 47 license = licenses.mit;
+1
pkgs/applications/video/lxdvdrip/default.nix
··· 22 22 buildInputs = [ libdvdread ]; 23 23 24 24 meta = { 25 + broken = (stdenv.isLinux && stdenv.isAarch64); 25 26 description = "Command line tool to make a copy from a video DVD for private use"; 26 27 homepage = "https://sourceforge.net/projects/lxdvdrip"; 27 28 license = lib.licenses.gpl2;
+2 -1
pkgs/applications/video/pyca/default.nix
··· 1 - { lib, buildPythonApplication, fetchFromGitHub, pycurl, python-dateutil, configobj, sqlalchemy, sdnotify, flask }: 1 + { stdenv, lib, buildPythonApplication, fetchFromGitHub, pycurl, python-dateutil, configobj, sqlalchemy, sdnotify, flask }: 2 2 3 3 buildPythonApplication rec { 4 4 pname = "pyca"; ··· 21 21 ]; 22 22 23 23 meta = with lib; { 24 + broken = stdenv.isDarwin; 24 25 description = "A fully functional Opencast capture agent written in Python"; 25 26 homepage = "https://github.com/opencast/pyCA"; 26 27 license = licenses.lgpl3;
+2 -1
pkgs/applications/window-managers/leftwm/default.nix
··· 1 - { lib, fetchFromGitHub, rustPlatform, libX11, libXinerama }: 1 + { stdenv, lib, fetchFromGitHub, rustPlatform, libX11, libXinerama }: 2 2 3 3 let 4 4 rpathLibs = [ libXinerama libX11 ]; ··· 28 28 dontPatchELF = true; 29 29 30 30 meta = with lib; { 31 + broken = (stdenv.isLinux && stdenv.isAarch64); 31 32 description = "A tiling window manager for the adventurer"; 32 33 homepage = "https://github.com/leftwm/leftwm"; 33 34 license = licenses.mit;
+1
pkgs/data/themes/adwaita-qt/default.nix
··· 53 53 license = licenses.gpl2Plus; 54 54 maintainers = teams.gnome.members ++ (with maintainers; [ ]); 55 55 platforms = platforms.all; 56 + broken = stdenv.isDarwin; # broken since 2021-12-05 on hydra, broken until qt515 will be used for darwin 56 57 }; 57 58 }
+1
pkgs/desktops/gnustep/libobjc2/default.nix
··· 16 16 cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ]; 17 17 18 18 meta = with lib; { 19 + broken = stdenv.isDarwin; 19 20 description = "Objective-C runtime for use with GNUstep"; 20 21 homepage = "http://gnustep.org/"; 21 22 license = licenses.mit;
+3 -1
pkgs/desktops/lxqt/compton-conf/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , mkDerivation 3 4 , fetchFromGitHub 4 5 , cmake ··· 41 40 passthru.updateScript = lxqt.lxqtUpdateScript { inherit pname version src; }; 42 41 43 42 meta = with lib; { 43 + broken = stdenv.isDarwin; 44 44 homepage = "https://github.com/lxqt/compton-conf"; 45 45 description = "GUI configuration tool for compton X composite manager"; 46 46 license = licenses.lgpl21Plus;
+3 -1
pkgs/desktops/lxqt/libsysstat/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , mkDerivation 3 4 , fetchFromGitHub 4 5 , cmake ··· 31 30 passthru.updateScript = lxqtUpdateScript { inherit pname version src; }; 32 31 33 32 meta = with lib; { 33 + broken = stdenv.isDarwin; 34 34 description = "Library used to query system info and statistics"; 35 35 homepage = "https://github.com/lxqt/libsysstat"; 36 36 license = licenses.lgpl21Plus;
+3 -1
pkgs/desktops/lxqt/qtermwidget/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , mkDerivation 3 4 , fetchFromGitHub 4 5 , cmake ··· 33 32 passthru.updateScript = lxqtUpdateScript { inherit pname version src; }; 34 33 35 34 meta = with lib; { 35 + broken = stdenv.isDarwin; 36 36 homepage = "https://github.com/lxqt/qtermwidget"; 37 37 description = "A terminal emulator widget for Qt 5"; 38 38 license = licenses.gpl2Plus;
+1
pkgs/desktops/mate/mate-menus/default.nix
··· 23 23 passthru.updateScript = mateUpdateScript { inherit pname version; }; 24 24 25 25 meta = with lib; { 26 + broken = stdenv.isDarwin; 26 27 description = "Menu system for MATE"; 27 28 homepage = "https://github.com/mate-desktop/mate-menus"; 28 29 license = with licenses; [ gpl2Plus lgpl2Plus ];
+4
pkgs/development/compilers/bigloo/default.nix
··· 54 54 license = lib.licenses.gpl2Plus; 55 55 platforms = lib.platforms.unix; 56 56 maintainers = with lib.maintainers; [ thoughtpolice ]; 57 + # dyld: Library not loaded: /nix/store/w3liqjlrcmzc0sf2kgwjprqgqwqx8z47-libunistring-1.0/lib/libunistring.2.dylib 58 + # Referenced from: /private/tmp/nix-build-bigloo-4.4b.drv-0/bigloo-4.4b/bin/bigloo 59 + # Reason: Incompatible library version: bigloo requires version 5.0.0 or later, but libunistring.2.dylib provides version 4.0.0 60 + broken = (stdenv.isDarwin && stdenv.isx86_64); 57 61 58 62 longDescription = '' 59 63 Bigloo is a Scheme implementation devoted to one goal: enabling
+2
pkgs/development/compilers/ccl/default.nix
··· 121 121 homepage = "https://ccl.clozure.com/"; 122 122 maintainers = with maintainers; [ raskin muflax tohl ]; 123 123 platforms = attrNames options; 124 + # assembler failures during build, x86_64-darwin broken since 2020-10-14 125 + broken = (stdenv.isDarwin && stdenv.isx86_64); 124 126 license = licenses.asl20; 125 127 }; 126 128 }
+1
pkgs/development/compilers/cmdstan/default.nix
··· 42 42 preFixup = "rm -rf $(pwd)"; 43 43 44 44 meta = { 45 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 45 46 description = "Command-line interface to Stan"; 46 47 longDescription = '' 47 48 Stan is a probabilistic programming language implementing full Bayesian
+1 -1
pkgs/development/compilers/crystal/default.nix
··· 214 214 }; 215 215 216 216 meta = with lib; { 217 + broken = stdenv.isDarwin; 217 218 description = "A compiled language with Ruby like syntax and type inference"; 218 219 homepage = "https://crystal-lang.org/"; 219 220 license = licenses.asl20; 220 221 maintainers = with maintainers; [ david50407 manveru peterhoeg ]; 221 222 platforms = let archNames = builtins.attrNames archs; in 222 223 if (lib.versionOlder version "1.2.0") then remove "aarch64-darwin" archNames else archNames; 223 - broken = lib.versionOlder version "0.36.1" && stdenv.isDarwin; 224 224 }; 225 225 }) 226 226 );
+1
pkgs/development/compilers/dmd/default.nix
··· 196 196 ''; 197 197 198 198 meta = with lib; { 199 + broken = stdenv.isDarwin; 199 200 description = "Official reference compiler for the D language"; 200 201 homepage = "https://dlang.org/"; 201 202 # Everything is now Boost licensed, even the backend.
+1
pkgs/development/compilers/dotnet/build-dotnet.nix
··· 86 86 ''; 87 87 88 88 meta = with lib; { 89 + broken = stdenv.isDarwin; 89 90 description = builtins.getAttr type descriptions; 90 91 homepage = "https://dotnet.github.io/"; 91 92 license = licenses.mit;
+1
pkgs/development/compilers/gforth/default.nix
··· 34 34 ''; 35 35 36 36 meta = { 37 + broken = stdenv.isDarwin; 37 38 description = "The Forth implementation of the GNU project"; 38 39 homepage = "https://github.com/forthy42/gforth"; 39 40 license = lib.licenses.gpl3;
+1
pkgs/development/compilers/inform7/default.nix
··· 22 22 ''; 23 23 24 24 meta = with lib; { 25 + broken = (stdenv.isLinux && stdenv.isAarch64); 25 26 description = "A design system for interactive fiction"; 26 27 homepage = "http://inform7.com/"; 27 28 license = licenses.artistic2;
+1
pkgs/development/compilers/jwasm/default.nix
··· 32 32 ''; 33 33 34 34 meta = with lib; { 35 + broken = stdenv.isDarwin; 35 36 homepage = "https://github.com/Baron-von-Riedesel/JWasm/"; 36 37 description = "A MASM-compatible x86 assembler"; 37 38 license = licenses.gpl2Plus;
+2
pkgs/development/compilers/llvm/13/lldb/default.nix
··· 102 102 ''; 103 103 104 104 meta = llvm_meta // { 105 + broken = stdenv.isDarwin; 105 106 homepage = "https://lldb.llvm.org/"; 106 107 description = "A next-generation high-performance debugger"; 107 108 longDescription = '' ··· 135 134 doCheck = false; 136 135 137 136 meta = llvm_meta // { 137 + broken = stdenv.isDarwin; 138 138 description = "man pages for LLDB ${version}"; 139 139 }; 140 140 })
+1
pkgs/development/compilers/llvm/5/lld/default.nix
··· 28 28 outputs = [ "out" "lib" "dev" ]; 29 29 30 30 meta = llvm_meta // { 31 + broken = stdenv.isDarwin; 31 32 homepage = "https://lld.llvm.org/"; 32 33 description = "The LLVM linker (unwrapped)"; 33 34 longDescription = ''
+1
pkgs/development/compilers/llvm/8/lldb/default.nix
··· 80 80 ''; 81 81 82 82 meta = llvm_meta // { 83 + broken = stdenv.isDarwin; 83 84 homepage = "https://lldb.llvm.org/"; 84 85 description = "A next-generation high-performance debugger"; 85 86 longDescription = ''
+1
pkgs/development/compilers/llvm/9/lldb/default.nix
··· 80 80 ''; 81 81 82 82 meta = llvm_meta // { 83 + broken = stdenv.isDarwin; 83 84 homepage = "https://lldb.llvm.org/"; 84 85 description = "A next-generation high-performance debugger"; 85 86 longDescription = ''
+1
pkgs/development/compilers/lobster/default.nix
··· 51 51 passthru.tests.can-run-hello-world = callPackage ./test-can-run-hello-world.nix {}; 52 52 53 53 meta = with lib; { 54 + broken = stdenv.isDarwin; 54 55 homepage = "https://strlen.com/lobster/"; 55 56 description = "The Lobster programming language"; 56 57 longDescription = ''
+1
pkgs/development/compilers/mkcl/default.nix
··· 55 55 enableParallelBuilding = true; 56 56 57 57 meta = with lib; { 58 + broken = (stdenv.isLinux && stdenv.isAarch64); 58 59 description = "ANSI Common Lisp Implementation"; 59 60 homepage = "https://common-lisp.net/project/mkcl/"; 60 61 license = licenses.lgpl2Plus;
+1
pkgs/development/compilers/mono/generic.nix
··· 76 76 inherit enableParallelBuilding; 77 77 78 78 meta = with lib; { 79 + broken = stdenv.isDarwin; 79 80 homepage = "https://mono-project.com/"; 80 81 description = "Cross platform, open source .NET development framework"; 81 82 platforms = with platforms; darwin ++ linux;
+2 -1
pkgs/development/compilers/myrddin/default.nix
··· 48 48 doCheck = true; 49 49 50 50 meta = with lib; { 51 + # darwin: never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/myrddin.x86_64-darwin 52 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 51 53 description = "Systems language that is both powerful and fun to use"; 52 54 homepage = "https://myrlang.org/"; 53 55 license = licenses.mit; 54 56 maintainers = with maintainers; [ luc65r ]; 55 57 platforms = platforms.all; 56 - broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/myrddin.x86_64-darwin 57 58 }; 58 59 }
+2 -1
pkgs/development/compilers/osl/default.nix
··· 1 - { clangStdenv, lib, fetchFromGitHub, cmake, zlib, openexr, 1 + { stdenv, clangStdenv, lib, fetchFromGitHub, cmake, zlib, openexr, 2 2 openimageio, llvm, boost165, flex, bison, partio, pugixml, 3 3 util-linux, python3 4 4 }: ··· 38 38 ]; 39 39 # TODO: How important is partio? CMake doesn't seem to find it 40 40 meta = with lib; { 41 + broken = (stdenv.isLinux && stdenv.isAarch64); 41 42 description = "Advanced shading language for production GI renderers"; 42 43 homepage = "http://opensource.imageworks.com/?p=osl"; 43 44 maintainers = with maintainers; [ hodapp ];
+1
pkgs/development/compilers/sagittarius-scheme/default.nix
··· 32 32 buildInputs = [ libffi boehmgc openssl zlib ] ++ lib.optional odbcSupport libiodbc; 33 33 34 34 meta = with lib; { 35 + broken = stdenv.isDarwin; 35 36 description = "An R6RS/R7RS Scheme system"; 36 37 longDescription = '' 37 38 Sagittarius Scheme is a free Scheme implementation supporting
+3 -1
pkgs/development/compilers/scryer-prolog/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , fetchFromGitHub 3 4 , fetchpatch 4 5 , rustPlatform ··· 42 41 buildInputs = [ openssl gmp libmpc mpfr ]; 43 42 44 43 meta = with lib; { 44 + broken = stdenv.isDarwin; 45 45 description = "A modern Prolog implementation written mostly in Rust."; 46 46 homepage = "https://github.com/mthom/scryer-prolog"; 47 47 license = with licenses; [ bsd3 ];
+1
pkgs/development/compilers/souffle/default.nix
··· 35 35 outputs = [ "out" ]; 36 36 37 37 meta = with lib; { 38 + broken = stdenv.isDarwin; 38 39 description = "A translator of declarative Datalog programs into the C++ language"; 39 40 homepage = "https://souffle-lang.github.io/"; 40 41 platforms = platforms.unix;
+1
pkgs/development/compilers/swift/default.nix
··· 392 392 preFixup = "rm -rf $SWIFT_BUILD_ROOT $SWIFT_INSTALL_DIR"; 393 393 394 394 meta = with lib; { 395 + broken = true; 395 396 description = "The Swift Programming Language"; 396 397 homepage = "https://github.com/apple/swift"; 397 398 maintainers = with maintainers; [ dtzWill trepetti dduan ];
+1
pkgs/development/compilers/terra/default.nix
··· 80 80 ''; 81 81 82 82 meta = with lib; { 83 + broken = stdenv.isDarwin; 83 84 description = "A low-level counterpart to Lua"; 84 85 homepage = "https://terralang.org/"; 85 86 platforms = platforms.x86_64;
+1
pkgs/development/compilers/tinycc/default.nix
··· 60 60 checkTarget = "test"; 61 61 62 62 meta = with lib; { 63 + broken = stdenv.isDarwin; 63 64 homepage = "https://repo.or.cz/tinycc.git"; 64 65 description = "Small, fast, and embeddable C compiler and interpreter"; 65 66 longDescription = ''
+2 -1
pkgs/development/compilers/yap/default.nix
··· 20 20 NIX_CFLAGS_COMPILE = "-fpermissive -fcommon"; 21 21 22 22 meta = { 23 + # the linux 32 bit build fails. 24 + broken = (stdenv.isLinux && stdenv.isAarch64) || !stdenv.is64bit; 23 25 homepage = "http://www.dcc.fc.up.pt/~vsc/Yap/"; 24 26 description = "A ISO-compatible high-performance Prolog compiler"; 25 27 license = lib.licenses.artistic2; 26 28 27 29 platforms = lib.platforms.linux; 28 - broken = !stdenv.is64bit; # the linux 32 bit build fails. 29 30 }; 30 31 }
+1
pkgs/development/interpreters/gnu-apl/default.nix
··· 33 33 ''; 34 34 35 35 meta = with lib; { 36 + broken = stdenv.isDarwin; 36 37 description = "Free interpreter for the APL programming language"; 37 38 homepage = "https://www.gnu.org/software/apl/"; 38 39 license = licenses.gpl3Plus;
+1
pkgs/development/interpreters/hugs/default.nix
··· 40 40 ]; 41 41 42 42 meta = with lib; { 43 + broken = stdenv.isDarwin; 43 44 homepage = "https://www.haskell.org/hugs"; 44 45 description = "Haskell interpreter"; 45 46 maintainers = with maintainers; [ joachifm ];
+1
pkgs/development/interpreters/maude/default.nix
··· 57 57 enableParallelBuilding = false; 58 58 59 59 meta = { 60 + broken = stdenv.isDarwin; 60 61 homepage = "http://maude.cs.illinois.edu/"; 61 62 description = "High-level specification language"; 62 63 license = lib.licenses.gpl2Plus;
+1
pkgs/development/interpreters/picoc/default.nix
··· 34 34 ''; 35 35 36 36 meta = with lib; { 37 + broken = (stdenv.isLinux && stdenv.isAarch64); 37 38 description = "Very small C interpreter for scripting"; 38 39 longDescription = '' 39 40 PicoC is a very small C interpreter for scripting. It was originally
+2 -1
pkgs/development/interpreters/picolisp/default.nix
··· 50 50 ''; 51 51 52 52 meta = { 53 + # darwin: build times out 54 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 53 55 description = "A simple Lisp with an integrated database"; 54 56 homepage = "https://picolisp.com/"; 55 57 license = licenses.mit; 56 58 platforms = platforms.all; 57 - broken = stdenv.isDarwin; # times out 58 59 maintainers = with maintainers; [ raskin tohl ]; 59 60 }; 60 61
+1
pkgs/development/interpreters/racket/default.nix
··· 137 137 enableParallelBuilding = false; 138 138 139 139 meta = with lib; { 140 + broken = stdenv.isDarwin; 140 141 description = "A programmable programming language"; 141 142 longDescription = '' 142 143 Racket is a full-spectrum programming language. It goes beyond
+2 -1
pkgs/development/interpreters/starlark/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule }: 1 + { stdenv, lib, fetchFromGitHub, buildGoModule }: 2 2 buildGoModule rec { 3 3 pname = "starlark"; 4 4 version = "unstable-2022-03-02"; ··· 15 15 ldflags = [ "-s" "-w" ]; 16 16 17 17 meta = with lib; { 18 + broken = (stdenv.isLinux && stdenv.isAarch64); 18 19 homepage = "https://github.com/google/starlark-go"; 19 20 description = "An interpreter for Starlark, implemented in Go"; 20 21 license = licenses.bsd3;
+1
pkgs/development/interpreters/tinyscheme/default.nix
··· 20 20 ''; 21 21 22 22 meta = with lib; { 23 + broken = stdenv.isDarwin; 23 24 description = "Lightweight Scheme implementation"; 24 25 longDescription = '' 25 26 TinyScheme is a lightweight Scheme interpreter that implements as large a
+1
pkgs/development/interpreters/unicon-lang/default.nix
··· 35 35 ''; 36 36 37 37 meta = with lib; { 38 + broken = (stdenv.isLinux && stdenv.isAarch64); 38 39 description = "A very high level, goal-directed, object-oriented, general purpose applications language"; 39 40 maintainers = with maintainers; [ vrthra ]; 40 41 platforms = platforms.linux;
+3 -1
pkgs/development/interpreters/wasmer/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , rustPlatform 3 4 , fetchFromGitHub 4 5 , cmake ··· 39 38 LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib"; 40 39 41 40 meta = with lib; { 41 + broken = stdenv.isDarwin; 42 42 description = "The Universal WebAssembly Runtime"; 43 43 longDescription = '' 44 44 Wasmer is a standalone WebAssembly runtime for running WebAssembly outside
+1
pkgs/development/interpreters/wasmtime/default.nix
··· 32 32 ]; 33 33 34 34 meta = with lib; { 35 + broken = stdenv.isDarwin; 35 36 description = "Standalone JIT-style runtime for WebAssembly, using Cranelift"; 36 37 homepage = "https://github.com/bytecodealliance/wasmtime"; 37 38 license = licenses.asl20;
+1
pkgs/development/libraries/SDL_compat/default.nix
··· 43 43 ''; 44 44 45 45 meta = with lib; { 46 + broken = stdenv.isDarwin; 46 47 description = "A cross-platform multimedia library - build SDL 1.2 applications against 2.0"; 47 48 homepage = "https://www.libsdl.org/"; 48 49 license = licenses.zlib;
+3
pkgs/development/libraries/bullet/roboschool-fork.nix
··· 51 51 homepage = "http://bulletphysics.org"; 52 52 license = licenses.zlib; 53 53 platforms = platforms.unix; 54 + # /tmp/nix-build-bullet-2019-03-27.drv-0/source/src/Bullet3Common/b3Vector3.h:297:7: error: argument value 10880 is outside the valid range [0, 255] [-Wargument-outside-range] 55 + # y = b3_splat_ps(y, 0x80); 56 + broken = (stdenv.isDarwin && stdenv.isx86_64); 54 57 }; 55 58 }
+1
pkgs/development/libraries/clucene-core/default.nix
··· 16 16 ]; 17 17 18 18 meta = with lib; { 19 + broken = stdenv.isDarwin; 19 20 description = "Core library for full-featured text search engine"; 20 21 longDescription = '' 21 22 CLucene is a high-performance, scalable, cross platform, full-featured,
+1
pkgs/development/libraries/cmrt/default.nix
··· 16 16 buildInputs = [ libdrm libva ]; 17 17 18 18 meta = with lib; { 19 + broken = (stdenv.isLinux && stdenv.isAarch64); 19 20 homepage = "https://01.org/linuxmedia"; 20 21 description = "Intel C for Media Runtime"; 21 22 longDescription = "Media GPU kernel manager for Intel G45 & HD Graphics family";
+1
pkgs/development/libraries/eccodes/default.nix
··· 56 56 ''; 57 57 58 58 meta = with lib; { 59 + broken = stdenv.isDarwin; 59 60 homepage = "https://confluence.ecmwf.int/display/ECC/"; 60 61 license = licenses.asl20; 61 62 maintainers = with maintainers; [ knedlsepp ];
+1
pkgs/development/libraries/fflas-ffpack/default.nix
··· 49 49 doCheck = true; 50 50 51 51 meta = with lib; { 52 + broken = stdenv.isDarwin; 52 53 description = "Finite Field Linear Algebra Subroutines"; 53 54 license = licenses.lgpl21Plus; 54 55 maintainers = teams.sage.members;
+1
pkgs/development/libraries/fox/fox-1.6.nix
··· 23 23 hardeningDisable = [ "format" ]; 24 24 25 25 meta = { 26 + broken = stdenv.isDarwin; 26 27 branch = "1.6"; 27 28 description = "A C++ based class library for building Graphical User Interfaces"; 28 29 longDescription = ''
+1
pkgs/development/libraries/gecode/3.nix
··· 23 23 preConfigure = "patchShebangs configure"; 24 24 25 25 meta = with lib; { 26 + broken = stdenv.isDarwin; 26 27 license = licenses.mit; 27 28 homepage = "https://www.gecode.org"; 28 29 description = "Toolkit for developing constraint-based systems";
+1
pkgs/development/libraries/geoclue/default.nix
··· 113 113 ''; 114 114 115 115 meta = with lib; { 116 + broken = stdenv.isDarwin; 116 117 description = "Geolocation framework and some data providers"; 117 118 homepage = "https://gitlab.freedesktop.org/geoclue/geoclue/wikis/home"; 118 119 maintainers = with maintainers; [ raskin ];
+1
pkgs/development/libraries/gssdp/default.nix
··· 72 72 }; 73 73 74 74 meta = with lib; { 75 + broken = stdenv.isDarwin; 75 76 description = "GObject-based API for handling resource discovery and announcement over SSDP"; 76 77 homepage = "http://www.gupnp.org/"; 77 78 license = licenses.lgpl2Plus;
+1
pkgs/development/libraries/hivex/default.nix
··· 29 29 ''; 30 30 31 31 meta = with lib; { 32 + broken = stdenv.isDarwin; 32 33 description = "Windows registry hive extraction library"; 33 34 license = licenses.lgpl2; 34 35 homepage = "https://github.com/libguestfs/hivex";
+1
pkgs/development/libraries/java/jffi/default.nix
··· 38 38 ''; 39 39 40 40 meta = with lib; { 41 + broken = stdenv.isDarwin; 41 42 description = "Java Foreign Function Interface "; 42 43 homepage = "https://github.com/jnr/jffi"; 43 44 platforms = platforms.unix;
+1
pkgs/development/libraries/ldb/default.nix
··· 55 55 stripDebugList = [ "bin" "lib" "modules" ]; 56 56 57 57 meta = with lib; { 58 + broken = stdenv.isDarwin; 58 59 description = "A LDAP-like embedded database"; 59 60 homepage = "https://ldb.samba.org/"; 60 61 license = licenses.lgpl3Plus;
+1
pkgs/development/libraries/libagar/libagar_test.nix
··· 18 18 buildInputs = [ perl bsdbuild libagar libjpeg libpng openssl ]; 19 19 20 20 meta = with lib; { 21 + broken = (stdenv.isLinux && stdenv.isAarch64); 21 22 description = "Tests for libagar"; 22 23 homepage = "http://libagar.org/index.html"; 23 24 license = with licenses; bsd3;
+1
pkgs/development/libraries/libclc/default.nix
··· 34 34 ]; 35 35 36 36 meta = with lib; { 37 + broken = stdenv.isDarwin; 37 38 homepage = "http://libclc.llvm.org/"; 38 39 description = "Implementation of the library requirements of the OpenCL C programming language"; 39 40 license = licenses.mit;
+1
pkgs/development/libraries/libfm/default.nix
··· 44 44 enableParallelBuilding = true; 45 45 46 46 meta = with lib; { 47 + broken = stdenv.isDarwin; 47 48 homepage = "https://blog.lxde.org/category/pcmanfm/"; 48 49 license = licenses.lgpl21Plus; 49 50 description = "A glib-based library for file management";
+1
pkgs/development/libraries/libhugetlbfs/default.nix
··· 33 33 installTargets = [ "install" "install-docs" ]; 34 34 35 35 meta = with lib; { 36 + broken = (stdenv.isLinux && stdenv.isAarch64); 36 37 description = "library and utilities for Linux hugepages"; 37 38 maintainers = with maintainers; [ qyliss ]; 38 39 license = licenses.lgpl21Plus;
+1
pkgs/development/libraries/libical/default.nix
··· 100 100 ''; 101 101 102 102 meta = with lib; { 103 + broken = stdenv.isDarwin; 103 104 homepage = "https://github.com/libical/libical"; 104 105 description = "An Open Source implementation of the iCalendar protocols"; 105 106 license = licenses.mpl20;
+1
pkgs/development/libraries/libixp/default.nix
··· 19 19 buildInputs = [ txt2tags ]; 20 20 21 21 meta = { 22 + broken = stdenv.isDarwin; 22 23 homepage = "https://github.com/0intro/libixp"; 23 24 description = "Portable, simple C-language 9P client and server libary"; 24 25 maintainers = with lib.maintainers; [ kovirobi ];
+1
pkgs/development/libraries/libmusicbrainz/default.nix
··· 13 13 }; 14 14 15 15 meta = with lib; { 16 + broken = stdenv.isDarwin; 16 17 homepage = "http://musicbrainz.org/doc/libmusicbrainz"; 17 18 description = "MusicBrainz Client Library (3.x version)"; 18 19 longDescription = ''
+1
pkgs/development/libraries/libnatspec/default.nix
··· 14 14 buildInputs = [ popt ]; 15 15 16 16 meta = with lib; { 17 + broken = stdenv.isDarwin; 17 18 homepage = "http://natspec.sourceforge.net/"; 18 19 description = "A library intended to smooth national specificities in using of programs"; 19 20 platforms = platforms.unix;
+1
pkgs/development/libraries/libnfc/default.nix
··· 17 17 configureFlags = [ "sysconfdir=/etc" ]; 18 18 19 19 meta = with lib; { 20 + broken = stdenv.isDarwin; 20 21 description = "Open source library libnfc for Near Field Communication"; 21 22 license = licenses.gpl3; 22 23 homepage = "https://github.com/nfc-tools/libnfc";
+1
pkgs/development/libraries/libportal/default.nix
··· 61 61 ''; 62 62 63 63 meta = with lib; { 64 + broken = (stdenv.isLinux && stdenv.isAarch64); 64 65 description = "Flatpak portal library"; 65 66 homepage = "https://github.com/flatpak/libportal"; 66 67 license = licenses.lgpl3Plus;
+1
pkgs/development/libraries/libqalculate/default.nix
··· 39 39 ''; 40 40 41 41 meta = with lib; { 42 + broken = (stdenv.isLinux && stdenv.isAarch64); 42 43 description = "An advanced calculator library"; 43 44 homepage = "http://qalculate.github.io"; 44 45 license = licenses.gpl2Plus;
+1
pkgs/development/libraries/libredwg/default.nix
··· 34 34 checkInputs = lib.optionals enablePython [ libxml2 libxml2.dev ]; 35 35 36 36 meta = with lib; { 37 + broken = stdenv.isDarwin; 37 38 description = "Free implementation of the DWG file format"; 38 39 homepage = "https://savannah.gnu.org/projects/libredwg/"; 39 40 maintainers = with maintainers; [ tweber ];
+1
pkgs/development/libraries/libsigcxx/1.2.nix
··· 13 13 buildInputs = [ m4]; 14 14 15 15 meta = with lib; { 16 + broken = stdenv.isDarwin; 16 17 homepage = "https://libsigcplusplus.github.io/libsigcplusplus/"; 17 18 description = "A typesafe callback system for standard C++"; 18 19 branch = "1.2";
+1
pkgs/development/libraries/libsnark/default.nix
··· 18 18 }; 19 19 20 20 meta = with lib; { 21 + broken = (stdenv.isLinux && stdenv.isAarch64); 21 22 description = "C++ library for zkSNARKs"; 22 23 homepage = "https://github.com/scipr-lab/libsnark"; 23 24 license = licenses.mit;
+2 -1
pkgs/development/libraries/libtorrent-rasterbar/1.1.nix
··· 41 41 ]; 42 42 43 43 meta = with lib; { 44 + # darwin: never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/libtorrent-rasterbar-1_1_x.x86_64-darwin 45 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 44 46 homepage = "https://libtorrent.org/"; 45 47 description = "A C++ BitTorrent implementation focusing on efficiency and scalability"; 46 48 license = licenses.bsd3; 47 49 maintainers = [ ]; 48 50 platforms = platforms.unix; 49 - broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/libtorrent-rasterbar-1_1_x.x86_64-darwin 50 51 }; 51 52 }
+1
pkgs/development/libraries/libtorrent-rasterbar/default.nix
··· 37 37 ]; 38 38 39 39 meta = with lib; { 40 + broken = stdenv.isDarwin; 40 41 homepage = "https://libtorrent.org/"; 41 42 description = "A C++ BitTorrent implementation focusing on efficiency and scalability"; 42 43 license = licenses.bsd3;
+1
pkgs/development/libraries/libtoxcore/default.nix
··· 38 38 ''; 39 39 40 40 meta = with lib; { 41 + broken = stdenv.isDarwin; 41 42 description = "P2P FOSS instant messaging application aimed to replace Skype"; 42 43 homepage = "https://tox.chat"; 43 44 license = licenses.gpl3Plus;
+1
pkgs/development/libraries/libtoxcore/new-api.nix
··· 49 49 doCheck = false; 50 50 51 51 meta = with lib; { 52 + broken = stdenv.isDarwin; 52 53 description = "P2P FOSS instant messaging application aimed to replace Skype with crypto"; 53 54 license = licenses.gpl3Plus; 54 55 maintainers = with maintainers; [ ];
+1
pkgs/development/libraries/libxsmm/default.nix
··· 39 39 ''; 40 40 41 41 meta = with lib; { 42 + broken = (stdenv.isLinux && stdenv.isAarch64); 42 43 description = "Library targeting Intel Architecture for specialized dense and sparse matrix operations, and deep learning primitives"; 43 44 license = licenses.bsd3; 44 45 homepage = "https://github.com/hfp/libxsmm";
+1
pkgs/development/libraries/liquid-dsp/default.nix
··· 14 14 nativeBuildInputs = [ autoreconfHook ]; 15 15 16 16 meta = { 17 + broken = stdenv.isDarwin; 17 18 homepage = "https://liquidsdr.org/"; 18 19 description = "Digital signal processing library for software-defined radios"; 19 20 license = lib.licenses.mit;
+1
pkgs/development/libraries/mps/default.nix
··· 21 21 22 22 23 23 meta = { 24 + broken = true; 24 25 description = "A flexible memory management and garbage collection library"; 25 26 homepage = "https://www.ravenbrook.com/project/mps"; 26 27 license = lib.licenses.sleepycat;
+1
pkgs/development/libraries/neardal/default.nix
··· 23 23 configureFlags = [ "--disable-dependency-tracking" "--disable-traces" ]; 24 24 25 25 meta = with lib; { 26 + broken = (stdenv.isLinux && stdenv.isAarch64); 26 27 description = "C APIs to exchange datas with the NFC daemon 'Neard'"; 27 28 license = licenses.lgpl2; 28 29 homepage = "https://01.org/linux-nfc";
+1
pkgs/development/libraries/openct/default.nix
··· 33 33 ''; 34 34 35 35 meta = with lib; { 36 + broken = stdenv.isDarwin; 36 37 homepage = "https://github.com/OpenSC/openct/"; 37 38 license = licenses.lgpl21; 38 39 description = "Drivers for several smart card readers";
+1
pkgs/development/libraries/opendbx/default.nix
··· 20 20 buildInputs = [ readline libmysqlclient postgresql sqlite ]; 21 21 22 22 meta = with lib; { 23 + broken = stdenv.isDarwin; 23 24 description = "Extremely lightweight but extensible database access library written in C"; 24 25 license = licenses.lgpl21; 25 26 platforms = platforms.all;
+1
pkgs/development/libraries/pangomm/2.42.nix
··· 28 28 }; 29 29 30 30 meta = with lib; { 31 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 31 32 description = "C++ interface to the Pango text rendering library"; 32 33 homepage = "https://www.pango.org/"; 33 34 license = with licenses; [ lgpl2 lgpl21 ];
+1
pkgs/development/libraries/pcaudiolib/default.nix
··· 23 23 preConfigure = "./autogen.sh"; 24 24 25 25 meta = with lib; { 26 + broken = stdenv.isDarwin; 26 27 description = "Provides a C API to different audio devices"; 27 28 homepage = "https://github.com/espeak-ng/pcaudiolib"; 28 29 license = licenses.gpl3;
+1
pkgs/development/libraries/physics/geant4/default.nix
··· 119 119 ''; 120 120 121 121 meta = with lib; { 122 + broken = (stdenv.isLinux && stdenv.isAarch64); 122 123 description = "A toolkit for the simulation of the passage of particles through matter"; 123 124 longDescription = '' 124 125 Geant4 is a toolkit for the simulation of the passage of particles through matter.
+1
pkgs/development/libraries/qt-6/modules/qtwebengine.nix
··· 233 233 requiredSystemFeatures = [ "big-parallel" ]; 234 234 235 235 meta = with lib; { 236 + broken = (stdenv.isLinux && stdenv.isAarch64); 236 237 description = "A web engine based on the Chromium web browser"; 237 238 platforms = platforms.linux; 238 239 # This build takes a long time; particularly on slow architectures
+1
pkgs/development/libraries/qtscriptgenerator/default.nix
··· 42 42 hardeningDisable = [ "format" ]; 43 43 44 44 meta = { 45 + broken = (stdenv.isLinux && stdenv.isAarch64); 45 46 description = "QtScript bindings generator"; 46 47 homepage = "https://code.qt.io/cgit/qt-labs/qtscriptgenerator.git/"; 47 48 inherit (qt4.meta) platforms;
+1
pkgs/development/libraries/recastnavigation/default.nix
··· 24 24 buildInputs = [ libGL SDL2 libGLU ]; 25 25 26 26 meta = with lib; { 27 + broken = stdenv.isDarwin; 27 28 homepage = "https://github.com/recastnavigation/recastnavigation"; 28 29 description = "Navigation-mesh Toolset for Games"; 29 30 license = licenses.zlib;
+1
pkgs/development/libraries/rttr/default.nix
··· 23 23 ]; 24 24 25 25 meta = with lib; { 26 + broken = stdenv.isDarwin; 26 27 description = "C++ Reflection Library"; 27 28 homepage = "https://www.rttr.org"; 28 29 license = licenses.mit;
+1
pkgs/development/libraries/science/math/liblbfgs/default.nix
··· 10 10 }; 11 11 12 12 meta = { 13 + broken = (stdenv.isLinux && stdenv.isAarch64); 13 14 description = "Library of Limited-memory Broyden-Fletcher-Goldfarb-Shanno (L-BFGS)"; 14 15 homepage = "http://www.chokkan.org/software/liblbfgs/"; 15 16 license = lib.licenses.mit;
+1
pkgs/development/libraries/science/networking/ns-3/default.nix
··· 101 101 hardeningDisable = [ "fortify" "strictoverflow"]; 102 102 103 103 meta = with lib; { 104 + broken = (stdenv.isLinux && stdenv.isAarch64); 104 105 homepage = "http://www.nsnam.org"; 105 106 license = licenses.gpl3; 106 107 description = "A discrete time event network simulator";
+1
pkgs/development/libraries/tkrzw/default.nix
··· 15 15 doCheck = false; # memory intensive 16 16 17 17 meta = with lib; { 18 + broken = stdenv.isDarwin; 18 19 description = "A set of implementations of DBM"; 19 20 homepage = "https://dbmx.net/tkrzw/"; 20 21 maintainers = with maintainers; [ ehmry ];
+5
pkgs/development/libraries/unixODBCDrivers/default.nix
··· 20 20 }; 21 21 22 22 meta = with lib; { 23 + broken = stdenv.isDarwin; 23 24 description = "Official PostgreSQL ODBC Driver"; 24 25 homepage = "https://odbc.postgresql.org/"; 25 26 license = licenses.lgpl2; ··· 62 61 }; 63 62 64 63 meta = with lib; { 64 + broken = stdenv.isDarwin; 65 65 description = "MariaDB ODBC database driver"; 66 66 homepage = "https://downloads.mariadb.org/connector-odbc/"; 67 67 license = licenses.gpl2; ··· 126 124 }; 127 125 128 126 meta = with lib; { 127 + broken = stdenv.isDarwin; 129 128 description = "ODBC driver for SQLite"; 130 129 homepage = "http://www.ch-werner.de/sqliteodbc"; 131 130 license = licenses.bsd2; ··· 170 167 }; 171 168 172 169 meta = with lib; { 170 + broken = stdenv.isDarwin; 173 171 description = "ODBC Driver 17 for SQL Server"; 174 172 homepage = "https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-2017"; 175 173 license = licenses.unfree; ··· 214 210 }; 215 211 216 212 meta = with lib; { 213 + broken = stdenv.isDarwin; 217 214 description = "Amazon Redshift ODBC driver"; 218 215 homepage = "https://docs.aws.amazon.com/redshift/latest/mgmt/configure-odbc-connection.html"; 219 216 license = licenses.unfree;
+1
pkgs/development/libraries/vapoursynth/default.nix
··· 50 50 ''; 51 51 52 52 meta = with lib; { 53 + broken = stdenv.isDarwin; 53 54 description = "A video processing framework with the future in mind"; 54 55 homepage = "http://www.vapoursynth.com/"; 55 56 license = licenses.lgpl21;
+1
pkgs/development/libraries/vc/0.7.nix
··· 22 22 ''; 23 23 24 24 meta = with lib; { 25 + broken = (stdenv.isLinux && stdenv.isAarch64); 25 26 description = "Library for multiprecision complex arithmetic with exact rounding"; 26 27 homepage = "https://github.com/VcDevel/Vc"; 27 28 license = licenses.bsd3;
+1
pkgs/development/libraries/vmmlib/default.nix
··· 26 26 checkTarget = "test"; 27 27 28 28 meta = with lib; { 29 + broken = stdenv.isDarwin; 29 30 description = "A vector and matrix math library implemented using C++ templates"; 30 31 31 32 longDescription = ''vmmlib is a vector and matrix math library implemented
+1
pkgs/development/libraries/vte/default.nix
··· 98 98 }; 99 99 100 100 meta = with lib; { 101 + broken = stdenv.isDarwin; 101 102 homepage = "https://www.gnome.org/"; 102 103 description = "A library implementing a terminal emulator widget for GTK"; 103 104 longDescription = ''
+1 -2
pkgs/development/libraries/vtk/generic.nix
··· 101 101 ''; 102 102 103 103 meta = with lib; { 104 + broken = stdenv.isDarwin; 104 105 description = "Open source libraries for 3D computer graphics, image processing and visualization"; 105 106 homepage = "https://www.vtk.org/"; 106 107 license = licenses.bsd3; 107 108 maintainers = with maintainers; [ knedlsepp tfmoraes lheckemann ]; 108 109 platforms = with platforms; unix; 109 - # /nix/store/xxxxxxx-apple-framework-Security/Library/Frameworks/Security.framework/Headers/Authorization.h:192:7: error: variably modified 'bytes' at file scope 110 - broken = stdenv.isDarwin && (lib.versions.major majorVersion == "7" || lib.versions.major majorVersion == "8"); 111 110 }; 112 111 }
+1
pkgs/development/libraries/xed/default.nix
··· 37 37 dontInstall = true; # already installed during buildPhase 38 38 39 39 meta = with lib; { 40 + broken = (stdenv.isLinux && stdenv.isAarch64); 40 41 description = "Intel X86 Encoder Decoder (Intel XED)"; 41 42 homepage = "https://intelxed.github.io/"; 42 43 license = licenses.asl20;
+1
pkgs/development/misc/datafusion/default.nix
··· 25 25 cargoSha256 = "sha256-Q0SjVofl1+sex15sSU9s7PgKeHG2b0gJPSqz7YZFOVs="; 26 26 27 27 meta = with lib; { 28 + broken = stdenv.isDarwin; 28 29 description = "cli for Apache Arrow DataFusion"; 29 30 homepage = "https://arrow.apache.org/datafusion"; 30 31 license = licenses.asl20;
+1
pkgs/development/mobile/xpwn/default.nix
··· 25 25 buildInputs = [ zlib libpng bzip2 libusb-compat-0_1 openssl ]; 26 26 27 27 meta = with lib; { 28 + broken = stdenv.isDarwin; 28 29 homepage = "http://planetbeing.lighthouseapp.com/projects/15246-xpwn"; 29 30 description = "Custom NOR firmware loader/IPSW generator for the iPhone"; 30 31 license = licenses.gpl3Plus;
+3 -1
pkgs/development/python-modules/aesara/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , cons 4 5 , cython ··· 73 72 ]; 74 73 75 74 meta = with lib; { 75 + broken = (stdenv.isLinux && stdenv.isAarch64); 76 76 description = "Python library to define, optimize, and efficiently evaluate mathematical expressions involving multi-dimensional arrays"; 77 77 homepage = "https://github.com/aesara-devs/aesara"; 78 78 changelog = "https://github.com/aesara-devs/aesara/releases";
+3 -1
pkgs/development/python-modules/angrcli/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , angr 3 4 , buildPythonPackage 4 5 , cmd2 ··· 52 51 ]; 53 52 54 53 meta = with lib; { 54 + broken = (stdenv.isLinux && stdenv.isAarch64); 55 55 description = "Python modules to allow easier interactive use of angr"; 56 56 homepage = "https://github.com/fmagin/angr-cli"; 57 57 license = with licenses; [ mit ];
+3 -1
pkgs/development/python-modules/asyncssh/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , bcrypt 3 4 , buildPythonPackage 4 5 , cryptography ··· 78 77 ]; 79 78 80 79 meta = with lib; { 80 + broken = stdenv.isDarwin; 81 81 description = "Asynchronous SSHv2 Python client and server library"; 82 82 homepage = "https://asyncssh.readthedocs.io/"; 83 83 license = licenses.epl20;
+3 -1
pkgs/development/python-modules/aws-lambda-builders/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , mock ··· 60 59 ]; 61 60 62 61 meta = with lib; { 62 + broken = (stdenv.isLinux && stdenv.isAarch64); 63 63 description = "Tool to compile, build and package AWS Lambda functions"; 64 64 homepage = "https://github.com/awslabs/aws-lambda-builders"; 65 65 longDescription = ''
+1
pkgs/development/python-modules/awscrt/default.nix
··· 52 52 doCheck = false; 53 53 54 54 meta = with lib; { 55 + broken = stdenv.isDarwin; 55 56 homepage = "https://github.com/awslabs/aws-crt-python"; 56 57 description = "Python bindings for the AWS Common Runtime"; 57 58 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/awslambdaric/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , fetchpatch ··· 52 51 pythonImportsCheck = [ "awslambdaric" "runtime_client" ]; 53 52 54 53 meta = with lib; { 54 + broken = (stdenv.isLinux && stdenv.isAarch64); 55 55 description = "AWS Lambda Runtime Interface Client for Python"; 56 56 homepage = "https://github.com/aws/aws-lambda-python-runtime-interface-client"; 57 57 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/bayesian-optimization/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , scikit-learn ··· 32 31 ''; 33 32 34 33 meta = with lib; { 34 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 35 35 description = "A Python implementation of global optimization with gaussian processes"; 36 36 homepage = "https://github.com/fmfn/BayesianOptimization"; 37 37 license = licenses.mit;
+2 -1
pkgs/development/python-modules/bayespy/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pythonOlder 1 + { stdenv, lib, buildPythonPackage, fetchPypi, pythonOlder 2 2 , pytest, nose, glibcLocales 3 3 , numpy, scipy, matplotlib, h5py }: 4 4 ··· 23 23 ''; 24 24 25 25 meta = with lib; { 26 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 26 27 homepage = "http://www.bayespy.org"; 27 28 description = "Variational Bayesian inference tools for Python"; 28 29 license = licenses.mit;
+2
pkgs/development/python-modules/binwalk/default.nix
··· 67 67 description = "A tool for searching a given binary image for embedded files"; 68 68 maintainers = [ maintainers.koral ]; 69 69 license = licenses.mit; 70 + # Signature Exception: [Errno 1] Operation not permitted: '/testing/tests/input-vectors/_dirtraversal.tar.extracted' 71 + broken = (stdenv.isDarwin && stdenv.isx86_64); # broken on hydra since 2021-11-02 70 72 }; 71 73 }
+2 -1
pkgs/development/python-modules/bravado-core/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, python-dateutil, jsonref, jsonschema, 1 + { stdenv, lib, buildPythonPackage, fetchFromGitHub, python-dateutil, jsonref, jsonschema, 2 2 pyyaml, simplejson, six, pytz, msgpack, swagger-spec-validator, rfc3987, 3 3 strict-rfc3339, webcolors, mypy-extensions, jsonpointer, idna, pytest, mock, 4 4 pytest-benchmark, isPy27, enum34 }: ··· 44 44 ] ++ lib.optionals isPy27 [ enum34 ]; 45 45 46 46 meta = with lib; { 47 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 47 48 description = "Library for adding Swagger support to clients and servers"; 48 49 homepage = "https://github.com/Yelp/bravado-core"; 49 50 license = licenses.bsd3;
+3 -1
pkgs/development/python-modules/browser-cookie3/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , fetchPypi 3 4 , buildPythonPackage 4 5 , pythonOlder ··· 38 37 ]; 39 38 40 39 meta = with lib; { 40 + broken = stdenv.isDarwin; 41 41 description = "Loads cookies from your browser into a cookiejar object"; 42 42 homepage = "https://github.com/borisbabic/browser_cookie3"; 43 43 license = licenses.gpl3Only;
+1
pkgs/development/python-modules/buildbot/default.nix
··· 107 107 }; 108 108 109 109 meta = with lib; { 110 + broken = stdenv.isDarwin; 110 111 homepage = "https://buildbot.net/"; 111 112 description = "An open-source continuous integration framework for automating software build, test, and release processes"; 112 113 maintainers = with maintainers; [ ryansydnor lopsided98 ];
+3 -1
pkgs/development/python-modules/celery/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , billiard 3 4 , boto3 4 5 , buildPythonPackage ··· 80 79 }; 81 80 82 81 meta = with lib; { 82 + broken = stdenv.isDarwin; 83 83 description = "Distributed task queue"; 84 84 homepage = "https://github.com/celery/celery/"; 85 85 license = licenses.bsd3;
+3 -1
pkgs/development/python-modules/cffsubr/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , fonttools ··· 33 32 pythonImportsCheck = [ "cffsubr" ]; 34 33 35 34 meta = with lib; { 35 + broken = stdenv.isDarwin; 36 36 description = "Standalone CFF subroutinizer based on AFDKO tx"; 37 37 homepage = "https://github.com/adobe-type-tools/cffsubr"; 38 38 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/chiabip158/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , cmake ··· 31 30 dontConfigure = true; 32 31 33 32 meta = with lib; { 33 + broken = stdenv.isDarwin; 34 34 description = "Chia's implementation of BIP 158"; 35 35 homepage = "https://www.chia.net/"; 36 36 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/chiapos/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , substituteAll 3 4 , buildPythonPackage 4 5 , fetchPypi ··· 48 47 dontConfigure = true; 49 48 50 49 meta = with lib; { 50 + broken = stdenv.isDarwin; 51 51 description = "Chia proof of space library"; 52 52 homepage = "https://www.chia.net/"; 53 53 license = licenses.asl20;
+1
pkgs/development/python-modules/chiavdf/default.nix
··· 45 45 dontConfigure = true; 46 46 47 47 meta = with lib; { 48 + broken = stdenv.isDarwin; 48 49 description = "Chia verifiable delay function utilities"; 49 50 homepage = "https://www.chia.net/"; 50 51 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/cirq-core/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , pythonOlder 4 5 , fetchFromGitHub ··· 89 88 ]; 90 89 91 90 meta = with lib; { 91 + broken = (stdenv.isLinux && stdenv.isAarch64); 92 92 description = "Framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits"; 93 93 homepage = "https://github.com/quantumlib/cirq"; 94 94 changelog = "https://github.com/quantumlib/Cirq/releases/tag/v${version}";
+2 -1
pkgs/development/python-modules/clustershell/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pyyaml, openssh 1 + { stdenv, lib, buildPythonPackage, fetchPypi, pyyaml, openssh 2 2 , nose, bc, hostname, coreutils, bash, gnused 3 3 }: 4 4 ··· 81 81 ''; 82 82 83 83 meta = with lib; { 84 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 84 85 description = "Scalable Python framework for cluster administration"; 85 86 homepage = "https://cea-hpc.github.io/clustershell"; 86 87 license = licenses.lgpl21;
+3 -1
pkgs/development/python-modules/clvm-rs/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , fetchFromGitHub 3 4 , buildPythonPackage 4 5 , rustPlatform ··· 69 68 pythonImportsCheck = [ "clvm_rs" ]; 70 69 71 70 meta = with lib; { 71 + broken = stdenv.isDarwin; 72 72 homepage = "https://chialisp.com/"; 73 73 description = "Rust implementation of clvm"; 74 74 license = licenses.asl20;
+2 -1
pkgs/development/python-modules/cmigemo/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, six, cmigemo, pytestCheckHook }: 1 + { stdenv, lib, buildPythonPackage, fetchPypi, six, cmigemo, pytestCheckHook }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "cmigemo"; ··· 28 28 pythonImportsCheck = [ "cmigemo" ]; 29 29 30 30 meta = with lib; { 31 + broken = stdenv.isDarwin; 31 32 homepage = "https://github.com/mooz/python-cmigemo"; 32 33 description = "A pure python binding for C/Migemo"; 33 34 license = licenses.mit;
+2 -1
pkgs/development/python-modules/curtsies/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pythonOlder, blessings, mock, nose, pyte, cwcwidth, typing ? null}: 1 + { stdenv, lib, buildPythonPackage, fetchPypi, pythonOlder, blessings, mock, nose, pyte, cwcwidth, typing ? null}: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "curtsies"; ··· 18 18 ''; 19 19 20 20 meta = with lib; { 21 + broken = stdenv.isDarwin; 21 22 description = "Curses-like terminal wrapper, with colored strings!"; 22 23 homepage = "https://github.com/bpython/curtsies"; 23 24 license = licenses.mit;
+2 -1
pkgs/development/python-modules/cx_freeze/default.nix
··· 1 - { lib, buildPythonPackage, pythonOlder, fetchPypi, ncurses, importlib-metadata }: 1 + { stdenv, lib, buildPythonPackage, pythonOlder, fetchPypi, ncurses, importlib-metadata }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "cx_Freeze"; ··· 25 25 doCheck = false; 26 26 27 27 meta = with lib; { 28 + broken = (stdenv.isLinux && stdenv.isAarch64); 28 29 description = "A set of scripts and modules for freezing Python scripts into executables"; 29 30 homepage = "https://marcelotduarte.github.io/cx_Freeze/"; 30 31 license = licenses.psfl;
+3 -1
pkgs/development/python-modules/dash/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , plotly ··· 54 53 pythonImportsCheck = [ "dash" ]; 55 54 56 55 meta = with lib; { 56 + broken = stdenv.isDarwin; 57 57 description = "Python framework for building analytical web applications"; 58 58 homepage = "https://dash.plot.ly/"; 59 59 license = licenses.mit;
+3 -1
pkgs/development/python-modules/dask-image/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , dask ··· 32 31 pythonImportsCheck = [ "dask_image" ]; 33 32 34 33 meta = with lib; { 34 + broken = (stdenv.isLinux && stdenv.isAarch64); 35 35 homepage = "https://github.com/dask/dask-image"; 36 36 description = "Distributed image processing"; 37 37 license = licenses.bsdOriginal;
+3 -1
pkgs/development/python-modules/dask-jobqueue/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , dask 4 5 , distributed ··· 42 41 pythonImportsCheck = [ "dask_jobqueue" ]; 43 42 44 43 meta = with lib; { 44 + broken = stdenv.isDarwin; 45 45 homepage = "https://github.com/dask/dask-jobqueue"; 46 46 description = "Deploy Dask on job schedulers like PBS, SLURM, and SGE"; 47 47 license = licenses.bsd3;
+3 -1
pkgs/development/python-modules/dask-yarn/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , pytestCheckHook ··· 35 34 pythonImportsCheck = [ "dask_yarn" ]; 36 35 37 36 meta = with lib; { 37 + broken = stdenv.isDarwin; 38 38 description = "Deploy dask on YARN clusters"; 39 39 longDescription = ''Dask-Yarn deploys Dask on YARN clusters, 40 40 such as are found in traditional Hadoop installations.
+3 -1
pkgs/development/python-modules/dbus-next/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , python ··· 33 32 ''; 34 33 35 34 meta = with lib; { 35 + broken = stdenv.isDarwin; 36 36 homepage = "https://github.com/altdesktop/python-dbus-next"; 37 37 description = "A zero-dependency DBus library for Python with asyncio support"; 38 38 license = licenses.mit;
+3 -1
pkgs/development/python-modules/devito/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , anytree ··· 93 92 pythonImportsCheck = [ "devito" ]; 94 93 95 94 meta = with lib; { 95 + broken = stdenv.isDarwin; 96 96 homepage = "https://www.devitoproject.org/"; 97 97 description = "Code generation framework for automated finite difference computation"; 98 98 license = licenses.mit;
+3 -1
pkgs/development/python-modules/dm-tree/default.nix
··· 1 - { abseil-cpp 1 + { stdenv 2 + , abseil-cpp 2 3 , absl-py 3 4 , attrs 4 5 , buildPythonPackage ··· 49 48 pythonImportsCheck = [ "tree" ]; 50 49 51 50 meta = with lib; { 51 + broken = stdenv.isDarwin; 52 52 description = "Tree is a library for working with nested data structures."; 53 53 homepage = "https://github.com/deepmind/tree"; 54 54 license = licenses.asl20;
+2 -1
pkgs/development/python-modules/ducc0/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitLab, pythonOlder, pytestCheckHook, pybind11, numpy }: 1 + { stdenv, lib, buildPythonPackage, fetchFromGitLab, pythonOlder, pytestCheckHook, pybind11, numpy }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "ducc0"; ··· 22 22 pythonImportsCheck = [ "ducc0" ]; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 homepage = "https://gitlab.mpcdf.mpg.de/mtr/ducc"; 26 27 description = "Efficient algorithms for Fast Fourier transforms and more"; 27 28 license = licenses.gpl2Plus;
+1
pkgs/development/python-modules/etebase/default.nix
··· 56 56 57 57 58 58 meta = with lib; { 59 + broken = stdenv.isDarwin; 59 60 homepage = "https://www.etebase.com/"; 60 61 description = "A Python client library for Etebase"; 61 62 license = licenses.bsd3;
+3 -1
pkgs/development/python-modules/evtx/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , pytestCheckHook ··· 41 40 ]; 42 41 43 42 meta = with lib; { 43 + broken = stdenv.isDarwin; 44 44 description = "Bindings for evtx"; 45 45 homepage = "https://github.com/omerbenamram/pyevtx-rs"; 46 46 license = with licenses; [ mit ];
+3 -1
pkgs/development/python-modules/fpylll/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , fetchFromGitHub 3 4 , buildPythonPackage 4 5 , pkgconfig ··· 54 53 ''; 55 54 56 55 meta = with lib; { 56 + broken = stdenv.isDarwin; 57 57 description = "A Python interface for fplll"; 58 58 changelog = "https://github.com/fplll/fpylll/releases/tag/${version}"; 59 59 homepage = "https://github.com/fplll/fpylll";
+2 -1
pkgs/development/python-modules/fuse-python/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pkg-config, fuse }: 1 + { stdenv, lib, buildPythonPackage, fetchPypi, pkg-config, fuse }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "fuse-python"; ··· 18 18 pythonImportsCheck = [ "fuse" ]; 19 19 20 20 meta = with lib; { 21 + broken = stdenv.isDarwin; 21 22 description = "Python bindings for FUSE"; 22 23 homepage = "https://github.com/libfuse/python-fuse"; 23 24 license = licenses.lgpl21;
+3 -1
pkgs/development/python-modules/gb-io/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , fetchFromGitHub 3 4 , buildPythonPackage 4 5 , rustPlatform ··· 38 37 pythonImportsCheck = [ "gb_io" ]; 39 38 40 39 meta = with lib; { 40 + broken = stdenv.isDarwin; 41 41 homepage = "https://github.com/althonos/gb-io.py"; 42 42 description = "A Python interface to gb-io, a fast GenBank parser written in Rust"; 43 43 license = licenses.mit;
+3 -1
pkgs/development/python-modules/gbulb/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , pygobject3 ··· 36 35 pythonImportsCheck = [ "gbulb" ]; 37 36 38 37 meta = with lib; { 38 + broken = stdenv.isDarwin; 39 39 description = "GLib implementation of PEP 3156"; 40 40 homepage = "https://github.com/beeware/gbulb"; 41 41 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/gigalixir/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonApplication 3 4 , click 4 5 , fetchPypi ··· 61 60 ]; 62 61 63 62 meta = with lib; { 63 + broken = stdenv.isDarwin; 64 64 description = "Gigalixir Command-Line Interface"; 65 65 homepage = "https://github.com/gigalixir/gigalixir-cli"; 66 66 license = licenses.mit;
+3 -1
pkgs/development/python-modules/glean-sdk/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , cargo 4 5 , cffi ··· 59 58 ]; 60 59 61 60 meta = with lib; { 61 + broken = stdenv.isDarwin; 62 62 description = "Telemetry client libraries and are a part of the Glean project"; 63 63 homepage = "https://mozilla.github.io/glean/book/index.html"; 64 64 license = licenses.mpl20;
+2 -1
pkgs/development/python-modules/graphite-api/default.nix
··· 1 - { buildPythonPackage, fetchFromGitHub, lib, flask, flask-caching, cairocffi, pyparsing, pytz, pyyaml 1 + { stdenv, buildPythonPackage, fetchFromGitHub, lib, flask, flask-caching, cairocffi, pyparsing, pytz, pyyaml 2 2 , raven, six, structlog, tzlocal, nose, mock, cairo, isPyPy 3 3 }: 4 4 ··· 38 38 LD_LIBRARY_PATH = "${cairo.out}/lib"; 39 39 40 40 meta = with lib; { 41 + broken = stdenv.isDarwin; 41 42 description = "Graphite-web, without the interface. Just the rendering HTTP API"; 42 43 homepage = "https://github.com/brutasse/graphite-api"; 43 44 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/graphite-web/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , django ··· 62 61 pythonImportsCheck = [ "graphite" ]; 63 62 64 63 meta = with lib; { 64 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 65 65 homepage = "http://graphiteapp.org/"; 66 66 description = "Enterprise scalable realtime graphing"; 67 67 maintainers = with maintainers; [ offline basvandijk ];
+3 -1
pkgs/development/python-modules/greeclimate/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , pythonOlder 4 5 , fetchFromGitHub ··· 42 41 ]; 43 42 44 43 meta = with lib; { 44 + broken = stdenv.isDarwin; 45 45 description = "Discover, connect and control Gree based minisplit systems"; 46 46 homepage = "https://github.com/cmroche/greeclimate"; 47 47 changelog = "https://github.com/cmroche/greeclimate/blob/${src.rev}/CHANGELOG.md";
+3 -1
pkgs/development/python-modules/howdoi/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , appdirs 3 4 , buildPythonPackage 4 5 , cachelib ··· 68 67 ]; 69 68 70 69 meta = with lib; { 70 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 71 71 description = "Instant coding answers via the command line"; 72 72 homepage = "https://github.com/gleitz/howdoi"; 73 73 license = licenses.mit;
+3 -1
pkgs/development/python-modules/hydra/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , antlr4-python3-runtime 3 4 , buildPythonPackage 4 5 , fetchFromGitHub ··· 55 54 ]; 56 55 57 56 meta = with lib; { 57 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 58 58 description = "A framework for configuring complex applications"; 59 59 homepage = "https://hydra.cc"; 60 60 license = licenses.mit;
+1
pkgs/development/python-modules/ifcopenshell/default.nix
··· 51 51 ]; 52 52 53 53 meta = with lib; { 54 + broken = stdenv.isDarwin; 54 55 description = "Open source IFC library and geometry engine"; 55 56 homepage = "http://ifcopenshell.org/"; 56 57 license = licenses.lgpl3;
+3 -1
pkgs/development/python-modules/imagecodecs-lite/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage 1 + { stdenv 2 + , lib, fetchPypi, buildPythonPackage 2 3 , pytest 3 4 , numpy 4 5 , cython ··· 31 30 ''; 32 31 33 32 meta = with lib; { 33 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 34 34 description = "Block-oriented, in-memory buffer transformation, compression, and decompression functions"; 35 35 homepage = "https://www.lfd.uci.edu/~gohlke/"; 36 36 maintainers = [ maintainers.tbenst ];
+3 -1
pkgs/development/python-modules/importlab/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , networkx ··· 26 25 pythonImportsCheck = [ "importlab" ]; 27 26 28 27 meta = with lib; { 28 + broken = stdenv.isDarwin; 29 29 description = "A library that automatically infers dependencies for Python files"; 30 30 homepage = "https://github.com/google/importlab"; 31 31 license = licenses.mit;
+3 -1
pkgs/development/python-modules/ipfshttpclient/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , pythonOlder ··· 83 82 pythonImportsCheck = [ "ipfshttpclient" ]; 84 83 85 84 meta = with lib; { 85 + broken = stdenv.isDarwin; 86 86 description = "A python client library for the IPFS API"; 87 87 homepage = "https://github.com/ipfs-shipyard/py-ipfs-http-client"; 88 88 license = licenses.mit;
+1
pkgs/development/python-modules/johnnycanencrypt/default.nix
··· 91 91 pythonImportsCheck = [ "johnnycanencrypt" ]; 92 92 93 93 meta = with lib; { 94 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 94 95 homepage = "https://github.com/kushaldas/johnnycanencrypt"; 95 96 description = "Python module for OpenPGP written in Rust"; 96 97 license = licenses.gpl3Plus;
+2 -1
pkgs/development/python-modules/jsonstreams/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, six, }: 1 + { stdenv, lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, six, }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "jsonstreams"; ··· 17 17 pytestFlagsArray = [ "tests --doctest-modules jsonstreams" ]; 18 18 19 19 meta = with lib; { 20 + broken = stdenv.isDarwin; 20 21 description = "A JSON streaming writer"; 21 22 homepage = "https://github.com/dcbaker/jsonstreams"; 22 23 license = licenses.mit;
+2 -2
pkgs/development/python-modules/jupyterhub/default.nix
··· 154 154 ]; 155 155 156 156 meta = with lib; { 157 + # darwin: E OSError: dlopen(/nix/store/43zml0mlr17r5jsagxr00xxx91hz9lky-openpam-20170430/lib/libpam.so, 6): image not found 158 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 157 159 description = "Serves multiple Jupyter notebook instances"; 158 160 homepage = "https://jupyter.org/"; 159 161 license = licenses.bsd3; 160 162 maintainers = with maintainers; [ ixxie cstrahan ]; 161 - # E OSError: dlopen(/nix/store/43zml0mlr17r5jsagxr00xxx91hz9lky-openpam-20170430/lib/libpam.so, 6): image not found 162 - broken = stdenv.isDarwin; 163 163 }; 164 164 }
+3 -1
pkgs/development/python-modules/jupyterlab_server/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , jsonschema ··· 45 44 __darwinAllowLocalNetworking = true; 46 45 47 46 meta = with lib; { 47 + broken = stdenv.isDarwin; 48 48 description = "JupyterLab Server"; 49 49 homepage = "https://jupyter.org"; 50 50 license = licenses.bsdOriginal;
+3 -1
pkgs/development/python-modules/k5test/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , substituteAll ··· 36 35 pythonImportsCheck = [ "k5test" ]; 37 36 38 37 meta = with lib; { 38 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 39 39 description = "Library for setting up self-contained Kerberos 5 environment"; 40 40 homepage = "https://github.com/pythongssapi/k5test"; 41 41 license = licenses.mit;
+2 -1
pkgs/development/python-modules/klein/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, python 1 + { stdenv, lib, buildPythonPackage, fetchPypi, python 2 2 , attrs, enum34, hyperlink, incremental, six, twisted, typing, tubes, werkzeug, zope_interface 3 3 , hypothesis, treq 4 4 }: ··· 21 21 ''; 22 22 23 23 meta = with lib; { 24 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 24 25 description = "Klein Web Micro-Framework"; 25 26 homepage = "https://github.com/twisted/klein"; 26 27 license = licenses.mit;
+1
pkgs/development/python-modules/mahotas/default.nix
··· 61 61 disabled = stdenv.isi686; # Failing tests 62 62 63 63 meta = with lib; { 64 + broken = (stdenv.isLinux && stdenv.isAarch64); 64 65 description = "Computer vision package based on numpy"; 65 66 homepage = "https://mahotas.readthedocs.io/"; 66 67 maintainers = with maintainers; [ luispedro ];
+2 -2
pkgs/development/python-modules/manticore/default.nix
··· 124 124 ]; 125 125 126 126 meta = with lib; { 127 + # m.c.manticore:WARNING: Manticore is only supported on Linux. Proceed at your own risk! 128 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 127 129 description = "Symbolic execution tool for analysis of smart contracts and binaries"; 128 130 homepage = "https://github.com/trailofbits/manticore"; 129 131 changelog = "https://github.com/trailofbits/manticore/releases/tag/${version}"; 130 132 license = licenses.agpl3Only; 131 133 platforms = platforms.unix; 132 134 maintainers = with maintainers; [ arturcygan ]; 133 - # m.c.manticore:WARNING: Manticore is only supported on Linux. Proceed at your own risk! 134 - broken = stdenv.isDarwin; 135 135 }; 136 136 }
+2 -1
pkgs/development/python-modules/miniupnpc/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi }: 1 + { stdenv, lib, buildPythonPackage, fetchPypi }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "miniupnpc"; ··· 10 10 }; 11 11 12 12 meta = with lib; { 13 + broken = stdenv.isDarwin; 13 14 description = "miniUPnP client"; 14 15 homepage = "http://miniupnp.free.fr/"; 15 16 license = licenses.mit;
+3 -1
pkgs/development/python-modules/modeled/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , zetup ··· 28 27 pythonImportsCheck = [ "modeled" ]; 29 28 30 29 meta = with lib; { 30 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 31 31 description = "Universal data modeling for Python"; 32 32 homepage = "https://github.com/modeled/modeled"; 33 33 license = licenses.lgpl3Only;
+3 -1
pkgs/development/python-modules/motioneye-client/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , aiohttp 3 4 , buildPythonPackage 4 5 , fetchFromGitHub ··· 48 47 ]; 49 48 50 49 meta = with lib; { 50 + broken = stdenv.isDarwin; 51 51 description = "Python library for motionEye"; 52 52 homepage = "https://github.com/dermotduffy/motioneye-client"; 53 53 license = with licenses; [ mit ];
+3 -1
pkgs/development/python-modules/mouseinfo/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , pyperclip 4 5 , fetchFromGitHub ··· 33 32 ]; 34 33 35 34 meta = with lib; { 35 + broken = stdenv.isDarwin; 36 36 description = "An application to display XY position and RGB color information for the pixel currently under the mouse. Works on Python 2 and 3."; 37 37 homepage = "https://github.com/asweigart/mouseinfo"; 38 38 license = licenses.gpl3;
+3 -1
pkgs/development/python-modules/mysql-connector/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , django 4 5 , dnspython ··· 44 43 doCheck = false; 45 44 46 45 meta = with lib; { 46 + broken = stdenv.isDarwin; 47 47 description = "A MySQL driver"; 48 48 longDescription = '' 49 49 A MySQL driver that does not depend on MySQL C client libraries and
+3 -1
pkgs/development/python-modules/netutils/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , fetchpatch ··· 59 58 ]; 60 59 61 60 meta = with lib; { 61 + broken = stdenv.isDarwin; 62 62 description = "Library that is a collection of objects for common network automation tasks"; 63 63 homepage = "https://github.com/networktocode/netutils"; 64 64 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/nose_progressive/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , nose ··· 24 23 doCheck = !isPy3k; 25 24 26 25 meta = with lib; { 26 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 27 27 homepage = "https://github.com/erikrose/nose-progressive"; 28 28 description = "A testrunner with a progress bar and smarter tracebacks"; 29 29 license = licenses.mit;
+3 -1
pkgs/development/python-modules/notmuch2/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 3 4 , buildPythonPackage 4 5 , notmuch ··· 26 25 pythonImportsCheck = [ "notmuch2" ]; 27 26 28 27 meta = with lib; { 28 + broken = stdenv.isDarwin; 29 29 description = "Pythonic bindings for the notmuch mail database using CFFI"; 30 30 homepage = "https://notmuchmail.org/"; 31 31 license = licenses.gpl3;
+3 -1
pkgs/development/python-modules/numba-scipy/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , scipy ··· 40 39 ]; 41 40 42 41 meta = with lib; { 42 + broken = stdenv.isDarwin; 43 43 description = "Extends Numba to make it aware of SciPy"; 44 44 homepage = "https://github.com/numba/numba-scipy"; 45 45 changelog = "https://github.com/numba/numba-scipy/blob/master/CHANGE_LOG";
+1
pkgs/development/python-modules/opensfm/default.nix
··· 115 115 pythonImportsCheck = [ "opensfm" ]; 116 116 117 117 meta = { 118 + broken = stdenv.isDarwin; 118 119 maintainers = [ lib.maintainers.SomeoneSerge ]; 119 120 license = lib.licenses.bsd2; 120 121 changelog = "https://github.com/mapillary/OpenSfM/blob/${src.rev}/CHANGELOG.md";
+3 -1
pkgs/development/python-modules/osc-lib/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , cliff ··· 56 55 pythonImportsCheck = [ "osc_lib" ]; 57 56 58 57 meta = with lib; { 58 + broken = stdenv.isDarwin; 59 59 description = "OpenStackClient Library"; 60 60 homepage = "https://github.com/openstack/osc-lib"; 61 61 license = licenses.asl20;
+2 -1
pkgs/development/python-modules/osc/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, bashInteractive, urlgrabber 1 + { stdenv, lib, buildPythonPackage, fetchFromGitHub, bashInteractive, urlgrabber 2 2 , m2crypto, rpm, chardet 3 3 }: 4 4 ··· 31 31 ''; 32 32 33 33 meta = with lib; { 34 + broken = stdenv.isDarwin; 34 35 homepage = "https://github.com/openSUSE/osc"; 35 36 description = "opensuse-commander with svn like handling"; 36 37 maintainers = [ maintainers.peti ];
+3 -1
pkgs/development/python-modules/oslo-concurrency/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , bash ··· 63 62 pythonImportsCheck = [ "oslo_concurrency" ]; 64 63 65 64 meta = with lib; { 65 + broken = stdenv.isDarwin; 66 66 description = "Oslo Concurrency library"; 67 67 homepage = "https://github.com/openstack/oslo.concurrency"; 68 68 license = licenses.asl20;
+1
pkgs/development/python-modules/oslo-log/default.nix
··· 53 53 ]; 54 54 55 55 meta = with lib; { 56 + broken = stdenv.isDarwin; 56 57 description = "oslo.log library"; 57 58 homepage = "https://github.com/openstack/oslo.log"; 58 59 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/pdoc3/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , fetchpatch ··· 40 39 ]; 41 40 42 41 meta = with lib; { 42 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 43 43 description = "Auto-generate API documentation for Python projects."; 44 44 homepage = "https://pdoc3.github.io/pdoc/"; 45 45 license = with licenses; [ agpl3Plus ];
+3 -1
pkgs/development/python-modules/persim/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , deprecated ··· 64 63 ]; 65 64 66 65 meta = with lib; { 66 + broken = stdenv.isDarwin; 67 67 description = "Distances and representations of persistence diagrams"; 68 68 homepage = "https://persim.scikit-tda.org"; 69 69 license = licenses.mit;
+3 -1
pkgs/development/python-modules/pescea/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , async-timeout 3 4 , buildPythonPackage 4 5 , fetchFromGitHub ··· 51 50 ]; 52 51 53 52 meta = with lib; { 53 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 54 54 description = "Python interface to Escea fireplaces"; 55 55 homepage = "https://github.com/lazdavila/pescea"; 56 56 license = licenses.gpl3Plus;
+1
pkgs/development/python-modules/pillow-simd/default.nix
··· 19 19 }; 20 20 21 21 meta = with lib; { 22 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 22 23 homepage = "https://python-pillow.github.io/pillow-perf/"; 23 24 description = "The friendly PIL fork - SIMD version"; 24 25 longDescription = ''
+3 -1
pkgs/development/python-modules/pint-pandas/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , fetchpatch ··· 41 40 ]; 42 41 43 42 meta = with lib; { 43 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 44 44 description = "Pandas support for pint"; 45 45 license = licenses.bsd3; 46 46 homepage = "https://github.com/hgrecco/pint-pandas";
+2 -1
pkgs/development/python-modules/plyer/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, fetchpatch, keyring, mock, pytestCheckHook }: 1 + { stdenv, lib, buildPythonPackage, fetchFromGitHub, fetchpatch, keyring, mock, pytestCheckHook }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "plyer"; ··· 55 55 pythonImportsCheck = [ "plyer" ]; 56 56 57 57 meta = with lib; { 58 + broken = stdenv.isDarwin; 58 59 description = "Plyer is a platform-independent api to use features commonly found on various platforms"; 59 60 homepage = "https://github.com/kivy/plyer"; 60 61 license = licenses.mit;
+1
pkgs/development/python-modules/polars/default.nix
··· 49 49 # ]; 50 50 51 51 meta = with lib; { 52 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 52 53 description = "Fast multi-threaded DataFrame library in Rust | Python | Node.js "; 53 54 homepage = "https://github.com/pola-rs/polars"; 54 55 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/pomegranate/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , fetchpatch ··· 31 30 checkInputs = [ pandas nose ]; # as of 0.13.5, it depends explicitly on nose, rather than pytest. 32 31 33 32 meta = with lib; { 33 + broken = stdenv.isDarwin; 34 34 description = "Probabilistic and graphical models for Python, implemented in cython for speed"; 35 35 homepage = "https://github.com/jmschrei/pomegranate"; 36 36 license = licenses.mit;
+3 -1
pkgs/development/python-modules/power/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 }: ··· 17 16 doCheck = false; 18 17 19 18 meta = with lib; { 19 + broken = stdenv.isDarwin; 20 20 description = "Cross-platform system power status information"; 21 21 homepage = "https://github.com/Kentzo/Power"; 22 22 license = licenses.mit;
+3 -1
pkgs/development/python-modules/proxy-py/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , openssl ··· 56 55 ]; 57 56 58 57 meta = with lib; { 58 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 59 59 description = "Python proxy framework"; 60 60 homepage = "https://github.com/abhinavsingh/proxy.py"; 61 61 license = with licenses; [ bsd3 ];
+3 -1
pkgs/development/python-modules/pulumi-aws/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , fetchpatch ··· 37 36 pythonImportsCheck = ["pulumi_aws"]; 38 37 39 38 meta = with lib; { 39 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 40 40 description = "Pulumi python amazon web services provider"; 41 41 homepage = "https://github.com/pulumi/pulumi-aws"; 42 42 license = licenses.asl20;
+2 -1
pkgs/development/python-modules/pushover/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 1 + { stdenv, lib, buildPythonPackage, fetchPypi 2 2 , requests }: 3 3 4 4 buildPythonPackage rec { ··· 16 16 doCheck = false; 17 17 18 18 meta = with lib; { 19 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 19 20 description = "Bindings and command line utility for the Pushover notification service"; 20 21 homepage = "https://github.com/Thibauth/python-pushover"; 21 22 license = licenses.gpl3;
+1
pkgs/development/python-modules/py3exiv2/default.nix
··· 38 38 doCheck = false; 39 39 40 40 meta = with lib; { 41 + broken = stdenv.isDarwin; 41 42 description = "Python binding to the library exiv2"; 42 43 homepage = "https://launchpad.net/py3exiv2"; 43 44 license = licenses.gpl3Plus;
+1
pkgs/development/python-modules/pyarrow/default.nix
··· 104 104 ] ++ lib.optionals (!stdenv.isDarwin) [ "plasma" ]); 105 105 106 106 meta = with lib; { 107 + broken = stdenv.isDarwin; 107 108 description = "A cross-language development platform for in-memory data"; 108 109 homepage = "https://arrow.apache.org/"; 109 110 license = licenses.asl20;
+1
pkgs/development/python-modules/pyclip/default.nix
··· 41 41 ''; 42 42 43 43 meta = with lib; { 44 + broken = stdenv.isDarwin; 44 45 description = "Cross-platform clipboard utilities supporting both binary and text data"; 45 46 homepage = "https://github.com/spyoungtech/pyclip"; 46 47 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/pydash/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , invoke ··· 40 39 ]; 41 40 42 41 meta = with lib; { 42 + broken = stdenv.isDarwin; 43 43 description = "Python utility libraries for doing stuff in a functional way"; 44 44 homepage = "https://pydash.readthedocs.io"; 45 45 license = licenses.mit;
+2 -1
pkgs/development/python-modules/pyfuse3/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pkg-config, fuse3, trio, pytestCheckHook, pytest-trio, which }: 1 + { stdenv, lib, buildPythonPackage, fetchPypi, pkg-config, fuse3, trio, pytestCheckHook, pytest-trio, which }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "pyfuse3"; ··· 26 26 disabledTests = [ "test_listdir" ]; 27 27 28 28 meta = with lib; { 29 + broken = (stdenv.isLinux && stdenv.isAarch64); 29 30 description = "Python 3 bindings for libfuse 3 with async I/O support"; 30 31 homepage = "https://github.com/libfuse/pyfuse3"; 31 32 license = licenses.lgpl2Plus;
+1
pkgs/development/python-modules/pynput/default.nix
··· 19 19 doCheck = false; 20 20 21 21 meta = with lib; { 22 + broken = stdenv.isDarwin; 22 23 description = "A library to control and monitor input devices"; 23 24 homepage = "https://github.com/moses-palmer/pynput"; 24 25 license = licenses.lgpl3;
+3 -1
pkgs/development/python-modules/pypass/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , click 4 5 , colorama ··· 76 75 ''; 77 76 78 77 meta = with lib; { 78 + broken = stdenv.isDarwin; 79 79 description = "Password manager pass in Python"; 80 80 homepage = "https://github.com/aviau/python-pass"; 81 81 license = licenses.gpl3Plus;
+3 -1
pkgs/development/python-modules/pyramid_chameleon/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , chameleon ··· 27 26 pythonImportsCheck = [ "pyramid_chameleon" ]; 28 27 29 28 meta = with lib; { 29 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 30 30 description = "Chameleon template compiler for pyramid"; 31 31 homepage = "https://github.com/Pylons/pyramid_chameleon"; 32 32 license = licenses.bsd0;
+3 -1
pkgs/development/python-modules/pyramid_hawkauth/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , pyramid ··· 25 24 pythonImportsCheck = [ "pyramid_hawkauth" ]; 26 25 27 26 meta = with lib; { 27 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 28 28 homepage = "https://github.com/mozilla-services/pyramid_hawkauth"; 29 29 description = "A Pyramid authentication plugin for HAWK"; 30 30 license = licenses.mpl20;
+3 -1
pkgs/development/python-modules/pyramid_jinja2/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , webtest ··· 22 21 pythonImportsCheck = [ "pyramid_jinja2" ]; 23 22 24 23 meta = with lib; { 24 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 25 25 description = "Jinja2 template bindings for the Pyramid web framework"; 26 26 homepage = "https://github.com/Pylons/pyramid_jinja2"; 27 27 license = licenses.bsd0;
+3 -1
pkgs/development/python-modules/pysendfile/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , python ··· 21 20 ''; 22 21 23 22 meta = with lib; { 23 + broken = stdenv.isDarwin; 24 24 homepage = "https://github.com/giampaolo/pysendfile"; 25 25 description = "A Python interface to sendfile(2)"; 26 26 license = licenses.mit;
+3 -1
pkgs/development/python-modules/pysptk/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage, fetchPypi 3 4 , numpy, scipy, cython, six, decorator 4 5 }: ··· 30 29 doCheck = false; 31 30 32 31 meta = with lib; { 32 + broken = stdenv.isDarwin; 33 33 description = "A python wrapper for Speech Signal Processing Toolkit (SPTK)"; 34 34 homepage = "https://pysptk.readthedocs.io/en/latest/"; 35 35 license = licenses.mit;
+2 -1
pkgs/development/python-modules/pystemd/default.nix
··· 1 - { lib, python, systemd }: 1 + { stdenv, lib, python, systemd }: 2 2 3 3 python.pkgs.buildPythonPackage rec { 4 4 pname = "pystemd"; ··· 16 16 checkPhase = "pytest tests"; 17 17 18 18 meta = with lib; { 19 + broken = (stdenv.isLinux && stdenv.isAarch64); 19 20 description = "A thin Cython-based wrapper on top of libsystemd, focused on exposing the dbus API via sd-bus in an automated and easy to consume way."; 20 21 homepage = "https://github.com/facebookincubator/pystemd/"; 21 22 license = licenses.lgpl21Plus;
+3 -1
pkgs/development/python-modules/pytest-annotate/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , pyannotate ··· 32 31 ]; 33 32 34 33 meta = with lib; { 34 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 35 35 description = "Generate PyAnnotate annotations from your pytest tests"; 36 36 homepage = "https://github.com/kensho-technologies/pytest-annotate"; 37 37 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/python-fsutil/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , pytestCheckHook ··· 44 43 ]; 45 44 46 45 meta = with lib; { 46 + broken = stdenv.isDarwin; 47 47 description = "Module with file-system utilities"; 48 48 homepage = "https://github.com/fabiocaccamo/python-fsutil"; 49 49 license = licenses.mit;
+2 -1
pkgs/development/python-modules/python3-application/default.nix
··· 1 - { lib, isPy3k, buildPythonPackage, fetchFromGitHub, fetchpatch, zope_interface, twisted }: 1 + { stdenv, lib, isPy3k, buildPythonPackage, fetchFromGitHub, fetchpatch, zope_interface, twisted }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "python3-application"; ··· 27 27 pythonImportsCheck = [ "application" ]; 28 28 29 29 meta = with lib; { 30 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 30 31 description = "A collection of modules that are useful when building python applications"; 31 32 homepage = "https://github.com/AGProjects/python3-application"; 32 33 license = licenses.lgpl21Plus;
+3 -1
pkgs/development/python-modules/pythonnet/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , fetchPypi 3 4 , fetchNuGet 4 5 , buildPythonPackage ··· 91 90 ''; 92 91 93 92 meta = with lib; { 93 + broken = stdenv.isDarwin; 94 94 description = ".Net and Mono integration for Python"; 95 95 homepage = "https://pythonnet.github.io"; 96 96 license = licenses.mit;
+2 -2
pkgs/development/python-modules/pytorch/default.nix
··· 315 315 }; 316 316 317 317 meta = with lib; { 318 + # darwin: error: use of undeclared identifier 'noU'; did you mean 'no'? 319 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 318 320 description = "Open source, prototype-to-production deep learning platform"; 319 321 homepage = "https://pytorch.org/"; 320 322 license = licenses.bsd3; 321 323 platforms = with platforms; linux ++ lib.optionals (!cudaSupport) darwin; 322 324 maintainers = with maintainers; [ teh thoughtpolice tscholak ]; # tscholak esp. for darwin-related builds 323 - # error: use of undeclared identifier 'noU'; did you mean 'no'? 324 - broken = stdenv.isDarwin; 325 325 }; 326 326 }
+2 -1
pkgs/development/python-modules/pyttsx3/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, espeak-ng }: 1 + { stdenv, lib, buildPythonPackage, fetchPypi, espeak-ng }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "pyttsx3"; ··· 16 16 doCheck = false; 17 17 18 18 meta = with lib; { 19 + broken = stdenv.isDarwin; 19 20 description = "Offline text-to-speech synthesis library"; 20 21 homepage = "https://github.com/nateshmbhat/pyttsx3"; 21 22 license = licenses.mpl20;
+3 -1
pkgs/development/python-modules/pyvlx/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , pytestCheckHook ··· 34 33 ]; 35 34 36 35 meta = with lib; { 36 + broken = stdenv.isDarwin; 37 37 description = "Python client to work with Velux units"; 38 38 longDescription = '' 39 39 PyVLX uses the Velux KLF 200 interface to control io-Homecontrol
+3 -1
pkgs/development/python-modules/qcelemental/default.nix
··· 1 - { buildPythonPackage, lib, fetchPypi 1 + { stdenv 2 + , buildPythonPackage, lib, fetchPypi 2 3 , networkx 3 4 , numpy 4 5 , pint ··· 28 27 doCheck = true; 29 28 30 29 meta = with lib; { 30 + broken = stdenv.isDarwin; 31 31 description = "Periodic table, physical constants, and molecule parsing for quantum chemistry"; 32 32 homepage = "http://docs.qcarchive.molssi.org/projects/qcelemental/en/latest/"; 33 33 license = licenses.bsd3;
+3 -1
pkgs/development/python-modules/qiskit-aer/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , pythonOlder 3 4 , buildPythonPackage 4 5 , fetchFromGitHub ··· 147 146 postCheck = "popd"; 148 147 149 148 meta = with lib; { 149 + broken = (stdenv.isLinux && stdenv.isAarch64); 150 150 description = "High performance simulators for Qiskit"; 151 151 homepage = "https://qiskit.org/aer"; 152 152 downloadPage = "https://github.com/QISKit/qiskit-aer/releases";
+3 -1
pkgs/development/python-modules/qiskit-terra/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , pythonOlder 3 4 , buildPythonPackage 4 5 , fetchFromGitHub ··· 193 192 194 193 195 194 meta = with lib; { 195 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 196 196 description = "Provides the foundations for Qiskit."; 197 197 longDescription = '' 198 198 Allows the user to write quantum circuits easily, and takes care of the constraints of real hardware.
+3 -1
pkgs/development/python-modules/questionary/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , poetry-core ··· 44 43 ]; 45 44 46 45 meta = with lib; { 46 + broken = stdenv.isDarwin; 47 47 description = "Python library to build command line user prompts"; 48 48 homepage = "https://github.com/tmbo/questionary"; 49 49 license = with licenses; [ mit ];
+1
pkgs/development/python-modules/qutip/default.nix
··· 60 60 }; 61 61 62 62 meta = with lib; { 63 + broken = (stdenv.isLinux && stdenv.isAarch64); 63 64 description = "Open-source software for simulating the dynamics of closed and open quantum systems"; 64 65 homepage = "https://qutip.org/"; 65 66 license = licenses.bsd3;
+3 -1
pkgs/development/python-modules/readability-lxml/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , pytestCheckHook ··· 32 31 ]; 33 32 34 33 meta = with lib; { 34 + broken = stdenv.isDarwin; 35 35 description = "Fast python port of arc90's readability tool"; 36 36 homepage = "https://github.com/buriy/python-readability"; 37 37 license = licenses.apsl20;
+2 -1
pkgs/development/python-modules/robomachine/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage, pyparsing, robotframework, allpairspy }: 1 + { stdenv, lib, fetchPypi, buildPythonPackage, pyparsing, robotframework, allpairspy }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "RoboMachine"; ··· 21 21 ''; 22 22 23 23 meta = with lib; { 24 + broken = true; 24 25 description = "Test data generator for Robot Framework"; 25 26 homepage = "https://github.com/mkorpela/RoboMachine"; 26 27 license = licenses.asl20;
+2 -1
pkgs/development/python-modules/robotframework-seleniumlibrary/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, python, robotframework, selenium, mockito, robotstatuschecker, approvaltests }: 1 + { stdenv, lib, buildPythonPackage, fetchFromGitHub, python, robotframework, selenium, mockito, robotstatuschecker, approvaltests }: 2 2 3 3 buildPythonPackage rec { 4 4 version = "6.0.0"; ··· 22 22 ''; 23 23 24 24 meta = with lib; { 25 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 25 26 description = "Web testing library for Robot Framework"; 26 27 homepage = "https://github.com/robotframework/SeleniumLibrary"; 27 28 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/ropper/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , capstone ··· 36 35 ]; 37 36 38 37 meta = with lib; { 38 + broken = stdenv.isDarwin; 39 39 description = "Show information about files in different file formats"; 40 40 homepage = "https://scoding.de/ropper/"; 41 41 license = licenses.bsd3;
+3 -1
pkgs/development/python-modules/s3fs/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , docutils ··· 33 32 pythonImportsCheck = [ "s3fs" ]; 34 33 35 34 meta = with lib; { 35 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 36 36 homepage = "https://github.com/dask/s3fs/"; 37 37 description = "A Pythonic file interface for S3"; 38 38 license = licenses.bsd3;
+2 -1
pkgs/development/python-modules/salmon-mail/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, dnspython, chardet, lmtpd 1 + { stdenv, lib, buildPythonPackage, fetchPypi, dnspython, chardet, lmtpd 2 2 , python-daemon, six, jinja2, mock, click }: 3 3 4 4 buildPythonPackage rec { ··· 26 26 ''; 27 27 28 28 meta = with lib; { 29 + broken = stdenv.isDarwin; 29 30 homepage = "https://salmon-mail.readthedocs.org/"; 30 31 description = "Pythonic mail application server"; 31 32 license = licenses.gpl3Only;
+1
pkgs/development/python-modules/sanic/default.nix
··· 128 128 ]; 129 129 130 130 meta = with lib; { 131 + broken = stdenv.isDarwin; 131 132 description = "Web server and web framework"; 132 133 homepage = "https://github.com/sanic-org/sanic/"; 133 134 license = licenses.mit;
+3 -1
pkgs/development/python-modules/scikit-survival/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , cython ··· 65 64 ]; 66 65 67 66 meta = with lib; { 67 + broken = (stdenv.isLinux && stdenv.isAarch64); 68 68 description = "Survival analysis built on top of scikit-learn"; 69 69 homepage = "https://github.com/sebp/scikit-survival"; 70 70 license = licenses.gpl3Only;
+3 -1
pkgs/development/python-modules/screeninfo/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonApplication 3 4 , dataclasses 4 5 , fetchPypi ··· 43 42 pythonImportsCheck = [ "screeninfo" ]; 44 43 45 44 meta = with lib; { 45 + broken = stdenv.isDarwin; 46 46 description = "Fetch location and size of physical screens"; 47 47 homepage = "https://github.com/rr-/screeninfo"; 48 48 license = licenses.mit;
+2 -1
pkgs/development/python-modules/selectors2/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 1 + { stdenv, lib, buildPythonPackage, fetchPypi 2 2 , nose, psutil, mock }: 3 3 4 4 buildPythonPackage rec { ··· 22 22 ''; 23 23 24 24 meta = with lib; { 25 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 25 26 homepage = "https://www.github.com/SethMichaelLarson/selectors2"; 26 27 description = "Back-ported, durable, and portable selectors"; 27 28 license = licenses.mit;
+3 -1
pkgs/development/python-modules/servefile/default.nix
··· 1 - { buildPythonPackage 1 + { stdenv 2 + , buildPythonPackage 2 3 , fetchFromGitHub 3 4 , lib 4 5 , pyopenssl ··· 36 35 pythonImportsCheck = [ "servefile" ]; 37 36 38 37 meta = with lib; { 38 + broken = stdenv.isDarwin; 39 39 description = "Serve files from shell via a small HTTP server"; 40 40 homepage = "https://github.com/sebageek/servefile"; 41 41 license = licenses.gpl3Plus;
+3 -1
pkgs/development/python-modules/sfepy/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , numpy ··· 68 67 ''; 69 68 70 69 meta = with lib; { 70 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 71 71 homepage = "https://sfepy.org/"; 72 72 description = "Simple Finite Elements in Python"; 73 73 license = licenses.bsd3;
+3 -1
pkgs/development/python-modules/slack-sdk/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , aiodns 3 4 , aiohttp 4 5 , boto3 ··· 74 73 ]; 75 74 76 75 meta = with lib; { 76 + broken = stdenv.isDarwin; 77 77 description = "Slack Developer Kit for Python"; 78 78 homepage = "https://slack.dev/python-slack-sdk/"; 79 79 license = with licenses; [ mit ];
+2 -1
pkgs/development/python-modules/sleekxmpp/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage, dnspython, pyasn1 }: 1 + { stdenv, lib, fetchPypi, buildPythonPackage, dnspython, pyasn1 }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "sleekxmpp"; ··· 16 16 }; 17 17 18 18 meta = with lib; { 19 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 19 20 description = "XMPP library for Python"; 20 21 license = licenses.mit; 21 22 homepage = "http://sleekxmpp.com/";
+3 -1
pkgs/development/python-modules/softlayer/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , click 4 5 , fetchFromGitHub ··· 48 47 pythonImportsCheck = [ "SoftLayer" ]; 49 48 50 49 meta = with lib; { 50 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 51 51 description = "Python libraries that assist in calling the SoftLayer API"; 52 52 homepage = "https://github.com/softlayer/softlayer-python"; 53 53 license = licenses.mit;
+3 -1
pkgs/development/python-modules/sphinx-markdown-parser/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , sphinx ··· 37 36 pythonImportsCheck = [ "sphinx_markdown_parser" ]; 38 37 39 38 meta = with lib; { 39 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 40 40 description = "Write markdown inside of docutils & sphinx projects"; 41 41 homepage = "https://github.com/clayrisser/sphinx-markdown-parser"; 42 42 license = licenses.mit;
+3 -1
pkgs/development/python-modules/sphinxcontrib-autoapi/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , pythonOlder ··· 34 33 ''; 35 34 36 35 meta = with lib; { 36 + broken = stdenv.isDarwin; 37 37 homepage = "https://github.com/readthedocs/sphinx-autoapi"; 38 38 description = "Provides 'autodoc' style documentation"; 39 39 longDescription = "Sphinx AutoAPI provides 'autodoc' style documentation for multiple programming languages without needing to load, run, or import the project being documented.";
+2 -1
pkgs/development/python-modules/sphinxcontrib-bayesnet/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, sphinx, sphinxcontrib-tikz }: 1 + { stdenv, lib, buildPythonPackage, fetchPypi, sphinx, sphinxcontrib-tikz }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "sphinxcontrib-bayesnet"; ··· 16 16 pythonImportsCheck = [ "sphinxcontrib.bayesnet" ]; 17 17 18 18 meta = with lib; { 19 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 19 20 homepage = "https://github.com/jluttine/sphinx-bayesnet"; 20 21 description = "Bayesian networks and factor graphs in Sphinx using TikZ syntax"; 21 22 license = licenses.gpl3Only;
+3 -1
pkgs/development/python-modules/streamz/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , confluent-kafka 4 5 , distributed ··· 76 75 ]; 77 76 78 77 meta = with lib; { 78 + broken = stdenv.isDarwin; 79 79 description = "Pipelines to manage continuous streams of data"; 80 80 homepage = "https://github.com/python-streamz/streamz"; 81 81 license = licenses.bsd3;
+1
pkgs/development/python-modules/tensorflow/bin.nix
··· 187 187 }; 188 188 189 189 meta = with lib; { 190 + broken = stdenv.isDarwin; 190 191 description = "Computation using data flow graphs for scalable machine learning"; 191 192 homepage = "http://tensorflow.org"; 192 193 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/timetagger/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , asgineer ··· 44 43 ]; 45 44 46 45 meta = with lib; { 46 + broken = stdenv.isDarwin; 47 47 homepage = "https://timetagger.app"; 48 48 license = licenses.gpl3Only; 49 49 description = "Tag your time, get the insight";
+1
pkgs/development/python-modules/trackpy/default.nix
··· 45 45 ''; 46 46 47 47 meta = with lib; { 48 + broken = (stdenv.isLinux && stdenv.isAarch64); 48 49 description = "Particle-tracking toolkit"; 49 50 homepage = "https://github.com/soft-matter/trackpy"; 50 51 license = licenses.bsd3;
+1
pkgs/development/python-modules/typer/default.nix
··· 53 53 pythonImportsCheck = [ "typer" ]; 54 54 55 55 meta = with lib; { 56 + broken = (stdenv.isLinux && stdenv.isAarch64); 56 57 description = "Python library for building CLI applications"; 57 58 homepage = "https://typer.tiangolo.com/"; 58 59 license = licenses.mit;
+2 -1
pkgs/development/python-modules/virtkey/default.nix
··· 1 - { lib, buildPythonPackage, fetchurl, pkg-config, gtk2, libX11, libXtst, libXi, libxkbfile, xorgproto }: 1 + { stdenv, lib, buildPythonPackage, fetchurl, pkg-config, gtk2, libX11, libXtst, libXi, libxkbfile, xorgproto }: 2 2 3 3 let 4 4 majorVersion = "0.63"; ··· 17 17 buildInputs = [ gtk2 libX11 libXtst libXi libxkbfile xorgproto ]; 18 18 19 19 meta = with lib; { 20 + broken = stdenv.isDarwin; 20 21 description = "Extension to emulate keypresses and to get the layout information from the X server"; 21 22 homepage = "https://launchpad.net/virtkey"; 22 23 license = licenses.gpl3;
+3 -1
pkgs/development/python-modules/vmprof/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , colorama ··· 26 25 pythonImportsCheck = [ "vmprof" ]; 27 26 28 27 meta = with lib; { 28 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 29 29 description = "A vmprof client"; 30 30 license = licenses.mit; 31 31 homepage = "https://vmprof.readthedocs.org/";
+1
pkgs/development/python-modules/wasmer/default.nix
··· 61 61 pythonImportsCheck = [ "${lib.replaceStrings ["-"] ["_"] pname}" ]; 62 62 63 63 meta = with lib; { 64 + broken = stdenv.isDarwin; 64 65 description = "Python extension to run WebAssembly binaries"; 65 66 homepage = "https://github.com/wasmerio/wasmer-python"; 66 67 license = licenses.mit;
+3 -1
pkgs/development/python-modules/watchfiles/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , anyio 3 4 , buildPythonPackage 4 5 , fetchFromGitHub ··· 61 60 ''; 62 61 63 62 meta = with lib; { 63 + broken = stdenv.isDarwin; 64 64 description = "Simple, modern file watching and code reload"; 65 65 homepage = "https://watchfiles.helpmanual.io/"; 66 66 license = licenses.mit;
+3 -1
pkgs/development/python-modules/webssh/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , paramiko ··· 36 35 ]; 37 36 38 37 meta = with lib; { 38 + broken = stdenv.isDarwin; 39 39 description = "Web based SSH client"; 40 40 homepage = "https://github.com/huashengdun/webssh/"; 41 41 license = licenses.mit;
+3 -1
pkgs/development/python-modules/word2vec/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , fetchzip ··· 45 44 ''; 46 45 47 46 meta = with lib; { 47 + broken = stdenv.isDarwin; 48 48 description = "Tool for computing continuous distributed representations of words"; 49 49 homepage = "https://github.com/danielfrg/word2vec"; 50 50 license = licenses.asl20;
+3 -1
pkgs/development/python-modules/wrf-python/default.nix
··· 1 - {lib 1 + { stdenv 2 + , lib 2 3 , fetchFromGitHub 3 4 , pythonOlder 4 5 , buildPythonPackage ··· 52 51 ]; 53 52 54 53 meta = with lib; { 54 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 55 55 description = "WRF postprocessing library for Python"; 56 56 homepage = "http://wrf-python.rtfd.org"; 57 57 license = licenses.asl20;
+1
pkgs/development/python-modules/wxPython/4.1.nix
··· 94 94 ''; 95 95 96 96 meta = with lib; { 97 + broken = stdenv.isDarwin; 97 98 description = "Cross platform GUI toolkit for Python, Phoenix version"; 98 99 homepage = "http://wxpython.org/"; 99 100 license = licenses.wxWindows;
+3 -1
pkgs/development/python-modules/z3c-checkversions/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , python ··· 25 24 ''; 26 25 27 26 meta = with lib; { 27 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 28 28 homepage = "https://github.com/zopefoundation/z3c.checkversions"; 29 29 description = "Find newer package versions on PyPI"; 30 30 license = licenses.zpl21;
+2 -1
pkgs/development/python-modules/zeroc-ice/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, openssl, bzip2 }: 1 + { stdenv, lib, buildPythonPackage, fetchPypi, openssl, bzip2 }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "zeroc-ice"; ··· 14 14 pythonImportsCheck = [ "Ice" ]; 15 15 16 16 meta = with lib; { 17 + broken = stdenv.isDarwin; 17 18 homepage = "https://zeroc.com/"; 18 19 license = licenses.gpl2; 19 20 description = "Comprehensive RPC framework with support for Python, C++, .NET, Java, JavaScript and more.";
+1
pkgs/development/tools/analysis/coan/default.nix
··· 22 22 ''; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 description = "The C preprocessor chainsaw"; 26 27 longDescription = '' 27 28 A software engineering tool for analysing preprocessor-based
+3 -1
pkgs/development/tools/analysis/dotenv-linter/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , rustPlatform 3 4 , fetchFromGitHub 4 5 }: ··· 18 17 cargoSha256 = "sha256-q59hpnXc00OzrJk1KOWbIPQYfIE+7ku9XtTDXHgwQBg="; 19 18 20 19 meta = with lib; { 20 + broken = stdenv.isDarwin; 21 21 description = "Lightning-fast linter for .env files. Written in Rust"; 22 22 homepage = "https://dotenv-linter.github.io"; 23 23 license = licenses.mit;
+2 -1
pkgs/development/tools/analysis/panopticon/default.nix
··· 1 - { lib, fetchFromGitHub, rustPlatform, qt5, git, cmake 1 + { stdenv, lib, fetchFromGitHub, rustPlatform, qt5, git, cmake 2 2 , pkg-config, makeWrapper }: 3 3 4 4 rustPlatform.buildRustPackage rec { ··· 36 36 ''; 37 37 38 38 meta = with lib; { 39 + broken = stdenv.isDarwin; 39 40 description = "A libre cross-platform disassembler"; 40 41 longDescription = '' 41 42 Panopticon is a cross platform disassembler for reverse
+1
pkgs/development/tools/analysis/qcachegrind/default.nix
··· 35 35 ''; 36 36 37 37 meta = with lib; { 38 + broken = stdenv.isDarwin; 38 39 description = "A Qt GUI to visualize profiling data"; 39 40 license = licenses.gpl2Plus; 40 41 platforms = platforms.unix;
+1
pkgs/development/tools/analysis/radare2/default.nix
··· 110 110 ]; 111 111 112 112 meta = with lib; { 113 + broken = stdenv.isDarwin; 113 114 description = "unix-like reverse engineering framework and commandline tools"; 114 115 homepage = "https://radare.org/"; 115 116 license = licenses.gpl2Plus;
+1
pkgs/development/tools/analysis/tartan/default.nix
··· 43 43 }; 44 44 45 45 meta = with lib; { 46 + broken = stdenv.isDarwin; 46 47 description = "Tools and Clang plugins for developing code with GLib"; 47 48 homepage = "https://freedesktop.org/wiki/Software/tartan"; 48 49 license = licenses.gpl3Plus;
+2 -1
pkgs/development/tools/azcopy/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule }: 1 + { stdenv, lib, fetchFromGitHub, buildGoModule }: 2 2 3 3 buildGoModule rec { 4 4 pname = "azure-storage-azcopy"; ··· 22 22 ''; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 maintainers = with maintainers; [ colemickens ]; 26 27 license = licenses.mit; 27 28 description = "The new Azure Storage data transfer utility - AzCopy v10";
+1
pkgs/development/tools/build-managers/cmake/default.nix
··· 118 118 doCheck = false; # fails 119 119 120 120 meta = with lib; { 121 + broken = (withQt5 && stdenv.isDarwin); 121 122 homepage = "https://cmake.org/"; 122 123 changelog = "https://cmake.org/cmake/help/v${lib.versions.majorMinor version}/release/${lib.versions.majorMinor version}.html"; 123 124 description = "Cross-Platform Makefile Generator";
+1
pkgs/development/tools/build-managers/fac/default.nix
··· 28 28 ''; 29 29 30 30 meta = with lib; { 31 + broken = (stdenv.isLinux && stdenv.isAarch64); 31 32 description = '' 32 33 A build system that uses ptrace to handle dependencies automatically 33 34 '';
+2 -1
pkgs/development/tools/golangci-lint/default.nix
··· 1 - { buildGoModule, fetchFromGitHub, lib, installShellFiles }: 1 + { stdenv, buildGoModule, fetchFromGitHub, lib, installShellFiles }: 2 2 3 3 buildGoModule rec { 4 4 pname = "golangci-lint"; ··· 31 31 ''; 32 32 33 33 meta = with lib; { 34 + broken = stdenv.isDarwin; 34 35 description = "Fast linters Runner for Go"; 35 36 homepage = "https://golangci-lint.run/"; 36 37 license = licenses.gpl3Plus;
+1
pkgs/development/tools/hobbes/default.nix
··· 33 33 checkTarget = "test"; 34 34 35 35 meta = with lib; { 36 + broken = stdenv.isDarwin; 36 37 description = "A language and an embedded JIT compiler"; 37 38 longDescription = '' 38 39 Hobbes is a a language, embedded compiler, and runtime for efficient
+1
pkgs/development/tools/kafka-delta-ingest/default.nix
··· 37 37 doCheck = false; 38 38 39 39 meta = with lib; { 40 + broken = stdenv.isDarwin; 40 41 description = "A highly efficient daemon for streaming data from Kafka into Delta Lake"; 41 42 homepage = "https://github.com/delta-io/kafka-delta-ingest"; 42 43 license = licenses.asl20;
+1
pkgs/development/tools/misc/igprof/default.nix
··· 20 20 CXXFLAGS = ["-fPIC" "-O2" "-w" "-fpermissive"]; 21 21 22 22 meta = { 23 + broken = (stdenv.isLinux && stdenv.isAarch64); 23 24 description = "The Ignominous Profiler"; 24 25 25 26 longDescription = ''
+1
pkgs/development/tools/misc/xxgdb/default.nix
··· 35 35 ''; 36 36 37 37 meta = with lib; { 38 + broken = stdenv.isDarwin; 38 39 description = "A simple but powerful graphical interface to gdb"; 39 40 license = licenses.mit; 40 41 maintainers = with maintainers; [ emilytrau ];
+1
pkgs/development/tools/parsing/ragel/default.nix
··· 26 26 doCheck = true; 27 27 28 28 meta = with lib; { 29 + broken = stdenv.isDarwin; 29 30 homepage = "https://www.colm.net/open-source/ragel/"; 30 31 description = "State machine compiler"; 31 32 inherit license;
+1
pkgs/development/tools/pgloader/default.nix
··· 29 29 ''; 30 30 31 31 meta = with lib; { 32 + broken = stdenv.isDarwin; 32 33 homepage = "https://pgloader.io/"; 33 34 description = "Loads data into PostgreSQL and allows you to implement Continuous Migration from your current database to PostgreSQL"; 34 35 maintainers = with maintainers; [ mguentner ];
+1
pkgs/development/tools/pqrs/default.nix
··· 14 14 cargoSha256 = "0mjwazsnryhlfyzcik8052q0imz5f104x86k6b5rncbbbjaj17q1"; 15 15 16 16 meta = with lib; { 17 + broken = true; # since 2021-07-05 on hydra 17 18 description = "CLI tool to inspect Parquet files"; 18 19 homepage = "https://github.com/manojkarthick/pqrs"; 19 20 license = with licenses; [ mit /* or */ asl20 ];
+2 -1
pkgs/development/tools/rbspy/default.nix
··· 1 - {rustPlatform, fetchFromGitHub, lib}: 1 + { stdenv, rustPlatform, fetchFromGitHub, lib}: 2 2 rustPlatform.buildRustPackage rec { 3 3 pname = "rbspy"; 4 4 version = "0.11.1"; ··· 14 14 doCheck = true; 15 15 16 16 meta = with lib; { 17 + broken = (stdenv.isLinux && stdenv.isAarch64); 17 18 homepage = "https://rbspy.github.io/"; 18 19 description = '' 19 20 A Sampling CPU Profiler for Ruby.
+2 -1
pkgs/development/tools/regclient/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 1 + { stdenv, lib, buildGoModule, fetchFromGitHub }: 2 2 3 3 let bins = [ "regbot" "regctl" "regsync" ]; in 4 4 ··· 33 33 ); 34 34 35 35 meta = with lib; { 36 + broken = stdenv.isDarwin; 36 37 description = "Docker and OCI Registry Client in Go and tooling using those libraries"; 37 38 homepage = "https://github.com/regclient/regclient"; 38 39 license = licenses.asl20;
+3
pkgs/development/tools/rust/cargo-modules/default.nix
··· 22 22 description = "A cargo plugin for showing a tree-like overview of a crate's modules"; 23 23 homepage = "https://github.com/regexident/cargo-modules"; 24 24 license = with licenses; [ mpl20 ]; 25 + # all tests fail with: 26 + # thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: "tests run with disabled concurrency, automatic snapshot name generation is not supported. Consider using the \"backtrace\" feature of insta which tries to recover test names from the call stack."', /private/tmp/nix-build-cargo-modules-0.5.6.drv-0/cargo-modules-0.5.6-vendor.tar.gz/insta/src/runtime.rs:908:22 27 + broken = (stdenv.isDarwin && stdenv.isx86_64); 25 28 maintainers = with maintainers; [ figsoda rvarago ]; 26 29 }; 27 30 }
+1
pkgs/development/tools/rust/cbindgen/default.nix
··· 30 30 ]; 31 31 32 32 meta = with lib; { 33 + broken = stdenv.isDarwin; 33 34 description = "A project for generating C bindings from Rust code"; 34 35 homepage = "https://github.com/eqrion/cbindgen"; 35 36 license = licenses.mpl20;
+1
pkgs/development/tools/scenebuilder/default.nix
··· 106 106 desktopItems = [ desktopItem ]; 107 107 108 108 meta = with lib; { 109 + broken = stdenv.isDarwin; 109 110 description = "A visual, drag'n'drop, layout tool for designing JavaFX application user interfaces."; 110 111 homepage = "https://gluonhq.com/products/scene-builder/"; 111 112 license = licenses.bsd3;
+1
pkgs/development/tools/scenic-view/default.nix
··· 96 96 desktopItems = [ desktopItem ]; 97 97 98 98 meta = with lib; { 99 + broken = stdenv.isDarwin; 99 100 description = "JavaFx application to visualize and modify the scenegraph of running JavaFx applications."; 100 101 longDescription = '' 101 102 A JavaFX application designed to make it simple to understand the current state of your application scenegraph
+1
pkgs/development/tools/simavr/default.nix
··· 35 35 checkTarget = "-C tests run_tests"; 36 36 37 37 meta = with lib; { 38 + broken = stdenv.isDarwin; 38 39 description = "A lean and mean Atmel AVR simulator"; 39 40 homepage = "https://github.com/buserror/simavr"; 40 41 license = licenses.gpl3;
+1
pkgs/development/web/kcgi/default.nix
··· 23 23 installFlags = [ "DESTDIR=$(out)" ]; 24 24 25 25 meta = with lib; { 26 + broken = (stdenv.isLinux && stdenv.isAarch64); 26 27 homepage = "https://kristaps.bsd.lv/kcgi"; 27 28 description = "Minimal CGI and FastCGI library for C/C++"; 28 29 license = licenses.isc;
+3 -1
pkgs/games/cataclysm-dda/git.nix
··· 1 - { lib, callPackage, CoreFoundation, fetchFromGitHub, pkgs, wrapCDDA, attachPkgs 1 + { stdenv, lib, callPackage, CoreFoundation, fetchFromGitHub, pkgs, wrapCDDA, attachPkgs 2 2 , tiles ? true, Cocoa 3 3 , debug ? false 4 4 , useXdgDir ? false ··· 29 29 meta = common.meta // { 30 30 maintainers = with lib.maintainers; 31 31 common.meta.maintainers ++ [ rardiol ]; 32 + # /nix/store/s8xaq3x7mcysvd752in2nihb1nr6svsl-SDL2-2.0.20-dev/include/SDL2/SDL_events.h:645:65: error: use of old-style cast [-Werror,-Wold-style-cast] 33 + broken = (stdenv.isDarwin && stdenv.isx86_64); 32 34 }; 33 35 }); 34 36 in
+1
pkgs/games/gargoyle/default.nix
··· 59 59 enableParallelBuilding = true; 60 60 61 61 meta = with lib; { 62 + broken = stdenv.isDarwin; 62 63 homepage = "http://ccxvii.net/gargoyle/"; 63 64 license = licenses.gpl2Plus; 64 65 description = "Interactive fiction interpreter GUI";
+1
pkgs/games/lgames/lbreakouthd/default.nix
··· 26 26 hardeningDisable = [ "format" ]; 27 27 28 28 meta = with lib; { 29 + broken = stdenv.isDarwin; 29 30 homepage = "https://lgames.sourceforge.io/LBreakoutHD/"; 30 31 description = "A widescreen Breakout clone"; 31 32 license = licenses.gpl2Plus;
+1
pkgs/games/lgames/lpairs2/default.nix
··· 24 24 ]; 25 25 26 26 meta = with lib; { 27 + broken = stdenv.isDarwin; 27 28 homepage = "http://lgames.sourceforge.net/LPairs/"; 28 29 description = "Matching the pairs - a typical Memory Game"; 29 30 license = licenses.gpl2Plus;
+1
pkgs/games/npush/default.nix
··· 38 38 ''; 39 39 40 40 meta = with lib; { 41 + broken = stdenv.isDarwin; 41 42 homepage = "http://npush.sourceforge.net/"; 42 43 description = "A Sokoban-like game"; 43 44 license = licenses.gpl2Plus;
+1
pkgs/games/onscripter-en/default.nix
··· 27 27 ''; 28 28 29 29 meta = with lib; { 30 + broken = stdenv.isDarwin; 30 31 description = "Japanese visual novel scripting engine"; 31 32 homepage = "http://unclemion.com/onscripter/"; 32 33 license = licenses.gpl2;
+1
pkgs/games/openspades/default.nix
··· 58 58 NIX_CFLAGS_LINK = "-lopenal"; 59 59 60 60 meta = with lib; { 61 + broken = stdenv.isDarwin; 61 62 description = "A compatible client of Ace of Spades 0.75"; 62 63 homepage = "https://github.com/yvt/openspades/"; 63 64 license = licenses.gpl3;
+1
pkgs/games/space-orbit/default.nix
··· 38 38 ''; 39 39 40 40 meta = with lib; { 41 + broken = stdenv.isDarwin; 41 42 description = "A space combat simulator"; 42 43 license = licenses.gpl2; 43 44 platforms = platforms.all;
+2 -1
pkgs/games/system-syzygy/default.nix
··· 1 - {lib, rustPlatform, fetchFromGitHub, fetchurl, SDL2, makeWrapper, makeDesktopItem}: 1 + { stdenv, lib, rustPlatform, fetchFromGitHub, fetchurl, SDL2, makeWrapper, makeDesktopItem}: 2 2 3 3 let 4 4 desktopFile = makeDesktopItem { ··· 35 35 36 36 37 37 meta = with lib; { 38 + broken = stdenv.isDarwin; 38 39 description = "A story and a puzzle game, where you solve a variety of puzzle"; 39 40 homepage = "https://mdsteele.games/syzygy"; 40 41 license = licenses.gpl3Plus;
+1
pkgs/games/taisei/default.nix
··· 31 31 ''; 32 32 33 33 meta = with lib; { 34 + broken = stdenv.isDarwin; 34 35 description = "A free and open-source Touhou Project clone and fangame"; 35 36 longDescription = '' 36 37 Taisei is an open clone of the Tōhō Project series. Tōhō is a one-man
+1
pkgs/games/uhexen2/default.nix
··· 51 51 ''; 52 52 53 53 meta = with lib; { 54 + broken = stdenv.isDarwin; 54 55 description = "A cross-platform port of Hexen II game"; 55 56 longDescription = '' 56 57 Hammer of Thyrion (uHexen2) is a cross-platform port of Raven Software's Hexen II source.
+1
pkgs/games/zaz/default.nix
··· 48 48 ]; 49 49 50 50 meta = with lib; { 51 + broken = stdenv.isDarwin; 51 52 description = "A puzzle game about arranging balls in triplets, like Luxor, Zuma, or Puzzle Bobble"; 52 53 homepage = "http://zaz.sourceforge.net/"; 53 54 license = licenses.gpl3;
+1
pkgs/misc/jackaudio/jack1.nix
··· 31 31 propagatedBuildInputs = [ optLibuuid ]; 32 32 33 33 meta = with lib; { 34 + broken = stdenv.isDarwin; 34 35 description = "JACK audio connection kit"; 35 36 homepage = "https://jackaudio.org"; 36 37 license = with licenses; [ gpl2 lgpl21 ];
+2 -1
pkgs/os-specific/linux/sdnotify-wrapper/default.nix
··· 1 - { lib, runCommandCC, skawarePackages }: 1 + { stdenv, lib, runCommandCC, skawarePackages }: 2 2 3 3 with skawarePackages; 4 4 ··· 12 12 outputs = [ "bin" "doc" "out" ]; 13 13 14 14 meta = { 15 + broken = stdenv.isDarwin; 15 16 homepage = "https://skarnet.org/software/misc/sdnotify-wrapper.c"; 16 17 description = "Use systemd sd_notify without having to link against libsystemd"; 17 18 platforms = lib.platforms.all;
+2 -1
pkgs/servers/livepeer/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule 1 + { stdenv, lib, fetchFromGitHub, buildGoModule 2 2 , pkg-config, ffmpeg, gnutls 3 3 }: 4 4 ··· 24 24 buildInputs = [ ffmpeg gnutls ]; 25 25 26 26 meta = with lib; { 27 + broken = stdenv.isDarwin; 27 28 description = "Official Go implementation of the Livepeer protocol"; 28 29 homepage = "https://livepeer.org"; 29 30 license = licenses.mit;
+1
pkgs/servers/matrix-conduit/default.nix
··· 25 25 cargoBuildFlags = "--bin conduit"; 26 26 27 27 meta = with lib; { 28 + broken = stdenv.isDarwin; 28 29 description = "A Matrix homeserver written in Rust"; 29 30 homepage = "https://conduit.rs/"; 30 31 license = licenses.asl20;
+1
pkgs/servers/rpiplay/default.nix
··· 40 40 ]; 41 41 42 42 meta = with lib; { 43 + broken = stdenv.isDarwin; 43 44 homepage = "https://github.com/FD-/RPiPlay"; 44 45 description = "An open-source implementation of an AirPlay mirroring server."; 45 46 license = licenses.gpl3Plus;
+1
pkgs/servers/search/meilisearch/default.nix
··· 26 26 cargoSha256 = "sha256-dz+1IQZRSeMEagI2dnOtR3A8prg4UZ2Om0pd1BUhuhE="; 27 27 buildInputs = lib.optionals stdenv.isDarwin [ Security DiskArbitration Foundation ]; 28 28 meta = with lib; { 29 + broken = stdenv.isDarwin; 29 30 description = "Powerful, fast, and an easy to use search engine "; 30 31 homepage = "https://docs.meilisearch.com/"; 31 32 license = licenses.mit;
+1 -1
pkgs/servers/sql/postgresql/ext/age.nix
··· 54 54 }; 55 55 56 56 meta = with lib; { 57 + broken = true; 57 58 description = "A graph database extension for PostgreSQL"; 58 59 homepage = "https://age.apache.org/"; 59 60 changelog = "https://github.com/apache/incubator-age/releases/tag/v${version}"; 60 61 maintainers = with maintainers; [ ]; 61 62 platforms = postgresql.meta.platforms; 62 63 license = licenses.asl20; 63 - broken = versionOlder postgresql.version "11.0"; 64 64 }; 65 65 }
+1
pkgs/servers/sql/postgresql/ext/cstore_fdw.nix
··· 23 23 ''; 24 24 25 25 meta = with lib; { 26 + broken = true; 26 27 description = "Columnar storage for PostgreSQL"; 27 28 homepage = "https://www.citusdata.com/"; 28 29 maintainers = with maintainers; [ thoughtpolice ];
+1
pkgs/servers/sql/postgresql/ext/temporal_tables.nix
··· 22 22 ''; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 description = "Temporal Tables PostgreSQL Extension "; 26 27 homepage = "https://github.com/mlt/temporal_tables"; 27 28 maintainers = with maintainers; [ ggpeti ];
+1
pkgs/servers/uxplay/default.nix
··· 42 42 ]; 43 43 44 44 meta = with lib; { 45 + broken = stdenv.isDarwin; 45 46 homepage = "https://github.com/FDH2/UxPlay"; 46 47 description = "AirPlay Unix mirroring server"; 47 48 license = licenses.gpl3Plus;
+1
pkgs/servers/varnish/default.nix
··· 38 38 outputs = [ "out" "dev" "man" ]; 39 39 40 40 meta = with lib; { 41 + broken = stdenv.isDarwin; 41 42 description = "Web application accelerator also known as a caching HTTP reverse proxy"; 42 43 homepage = "https://www.varnish-cache.org"; 43 44 license = licenses.bsd2;
+1
pkgs/shells/rush/default.nix
··· 20 20 doCheck = true; 21 21 22 22 meta = { 23 + broken = stdenv.isDarwin; 23 24 description = "Restricted User Shell"; 24 25 25 26 longDescription =
+1
pkgs/tools/archivers/xarchiver/default.nix
··· 21 21 ''; 22 22 23 23 meta = { 24 + broken = stdenv.isDarwin; 24 25 description = "GTK frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)"; 25 26 homepage = "https://github.com/ib/xarchiver"; 26 27 maintainers = [ lib.maintainers.domenkozar ];
+3 -1
pkgs/tools/audio/mpd-discord-rpc/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , rustPlatform 3 4 , fetchFromGitHub 4 5 }: ··· 18 17 cargoSha256 = "sha256-WhlVWQCUGP+K9md0yp6ZD6mGYMso1fUYKDuXXrC2FeI="; 19 18 20 19 meta = with lib; { 20 + broken = stdenv.isDarwin; 21 21 description = "Rust application which displays your currently playing song / album / artist from MPD in Discord using Rich Presence"; 22 22 homepage = "https://github.com/JakeStanger/mpd-discord-rpc"; 23 23 license = licenses.mit;
+2 -1
pkgs/tools/backup/bakelite/default.nix
··· 28 28 description = "Incremental backup with strong cryptographic confidentality"; 29 29 license = licenses.gpl2; 30 30 maintainers = with maintainers; [ mvs ]; 31 - platforms = platforms.unix; 31 + # no support for Darwin (yet: https://github.com/richfelker/bakelite/pull/5) 32 + platforms = platforms.linux; 32 33 }; 33 34 }
+5 -1
pkgs/tools/backup/bupstash/default.nix
··· 1 - { lib, fetchFromGitHub, installShellFiles, rustPlatform, ronn, pkg-config, libsodium }: 1 + { stdenv, lib, fetchFromGitHub, installShellFiles, rustPlatform, ronn, pkg-config, libsodium }: 2 2 rustPlatform.buildRustPackage rec { 3 3 pname = "bupstash"; 4 4 version = "0.11.0"; ··· 28 28 homepage = "https://bupstash.io"; 29 29 license = licenses.mit; 30 30 platforms = platforms.unix; 31 + # = note: Undefined symbols for architecture x86_64: 32 + # "_utimensat", referenced from: 33 + # https://github.com/NixOS/nixpkgs/issues/101229 34 + broken = (stdenv.isDarwin && stdenv.isx86_64); 31 35 maintainers = with maintainers; [ andrewchambers ]; 32 36 }; 33 37 }
+1
pkgs/tools/backup/dar/default.nix
··· 45 45 hardeningDisable = [ "format" ]; 46 46 47 47 meta = { 48 + broken = stdenv.isDarwin; 48 49 homepage = "http://dar.linux.free.fr"; 49 50 description = "Disk ARchiver, allows backing up files into indexed archives"; 50 51 maintainers = with maintainers; [ izorkin ];
+2 -1
pkgs/tools/backup/httrack/qt.nix
··· 1 - { mkDerivation, lib, fetchurl, cmake, pkg-config, makeWrapper 1 + { stdenv, mkDerivation, lib, fetchurl, cmake, pkg-config, makeWrapper 2 2 , httrack, qtbase, qtmultimedia }: 3 3 4 4 mkDerivation rec { ··· 29 29 ''; 30 30 31 31 meta = with lib; { 32 + broken = stdenv.isDarwin; 32 33 description = "Easy-to-use offline browser / website mirroring utility - QT frontend"; 33 34 homepage = "http://www.httrack.com"; 34 35 license = licenses.gpl3;
+1
pkgs/tools/filesystems/genimage/default.nix
··· 21 21 ''; 22 22 23 23 meta = with lib; { 24 + broken = stdenv.isDarwin; 24 25 homepage = "https://git.pengutronix.de/cgit/genimage"; 25 26 description = "Generate filesystem images from directory trees"; 26 27 license = licenses.gpl2Plus;
+1
pkgs/tools/filesystems/s3fs/default.nix
··· 23 23 ''; 24 24 25 25 meta = with lib; { 26 + broken = stdenv.isDarwin; 26 27 description = "Mount an S3 bucket as filesystem through FUSE"; 27 28 license = licenses.gpl2; 28 29 platforms = platforms.linux ++ platforms.darwin;
+3 -1
pkgs/tools/filesystems/sandboxfs/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , rustPlatform 3 4 , fetchCrate 4 5 , pkg-config ··· 25 24 postInstall = "installManPage man/sandboxfs.1"; 26 25 27 26 meta = with lib; { 27 + broken = stdenv.isDarwin; 28 28 description = "A virtual file system for sandboxing"; 29 29 homepage = "https://github.com/bazelbuild/sandboxfs"; 30 30 license = with licenses; [ asl20 ];
+1
pkgs/tools/filesystems/unionfs-fuse/default.nix
··· 41 41 ''; 42 42 43 43 meta = with lib; { 44 + broken = stdenv.isDarwin; 44 45 description = "FUSE UnionFS implementation"; 45 46 homepage = "https://github.com/rpodgorny/unionfs-fuse"; 46 47 license = licenses.bsd3;
+1 -1
pkgs/tools/games/opentracker/default.nix
··· 60 60 license = licenses.mit; 61 61 maintainers = [ maintainers.ivar ]; 62 62 mainProgram = "OpenTracker"; 63 - platforms = platforms.linux; 63 + platforms = [ "x86_64-linux" ]; 64 64 }; 65 65 }
+2 -1
pkgs/tools/graphics/gifski/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub, pkg-config }: 1 + { stdenv, lib, rustPlatform, fetchFromGitHub, pkg-config }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "gifski"; ··· 16 16 nativeBuildInputs = [ pkg-config ]; 17 17 18 18 meta = with lib; { 19 + broken = stdenv.isDarwin; 19 20 description = "GIF encoder based on libimagequant (pngquant)"; 20 21 homepage = "https://gif.ski/"; 21 22 license = licenses.agpl3;
+2 -1
pkgs/tools/misc/cod/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule, python3 }: 1 + { stdenv, lib, fetchFromGitHub, buildGoModule, python3 }: 2 2 3 3 buildGoModule rec { 4 4 pname = "cod"; ··· 27 27 ''; 28 28 29 29 meta = with lib; { 30 + broken = stdenv.isDarwin; 30 31 description = "Tool for generating Bash/Fish/Zsh autocompletions based on `--help` output"; 31 32 homepage = "https://github.com/dim-an/cod/"; 32 33 license = licenses.asl20;
+3 -1
pkgs/tools/misc/depotdownloader/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , fetchFromGitHub 3 4 , buildDotnetModule 4 5 }: ··· 19 18 nugetDeps = ./deps.nix; 20 19 21 20 meta = with lib; { 21 + broken = stdenv.isDarwin; 22 22 description = "Steam depot downloader utilizing the SteamKit2 library"; 23 23 license = licenses.gpl2Only; 24 24 maintainers = [ maintainers.babbaj ];
+3 -1
pkgs/tools/misc/dialogbox/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , mkDerivation 3 4 , fetchFromGitHub 4 5 , qmake ··· 37 36 ''; 38 37 39 38 meta = with lib; { 39 + broken = stdenv.isDarwin; 40 40 homepage = "https://github.com/martynets/dialogbox/"; 41 41 description = "Qt-based scriptable engine providing GUI dialog boxes"; 42 42 license = licenses.gpl3Plus;
+2 -1
pkgs/tools/misc/grit/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 1 + { stdenv, lib, buildGoModule, fetchFromGitHub }: 2 2 3 3 buildGoModule rec { 4 4 pname = "grit"; ··· 14 14 vendorSha256 = "sha256-iMMkjJ5dnlr0oSCifBQPWkInQBCp1bh23s+BcKzDNCg="; 15 15 16 16 meta = with lib; { 17 + broken = stdenv.isDarwin; 17 18 description = "A multitree-based personal task manager"; 18 19 homepage = "https://github.com/climech/grit"; 19 20 license = licenses.mit;
+1
pkgs/tools/misc/heimdall/default.nix
··· 44 44 ''; 45 45 46 46 meta = with lib; { 47 + broken = stdenv.isDarwin; 47 48 homepage = "http://www.glassechidna.com.au/products/heimdall/"; 48 49 description = "A cross-platform tool suite to flash firmware onto Samsung Galaxy S devices"; 49 50 license = licenses.mit;
+2 -1
pkgs/tools/misc/lighthouse-steamvr/default.nix
··· 1 - { fetchFromGitHub, lib, rustPlatform, pkg-config, dbus }: 1 + { stdenv, fetchFromGitHub, lib, rustPlatform, pkg-config, dbus }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "Lighthouse"; ··· 18 18 buildInputs = [ dbus ]; 19 19 20 20 meta = with lib; { 21 + broken = stdenv.isDarwin; 21 22 description = "VR Lighthouse power state management"; 22 23 homepage = "https://github.com/ShayBox/Lighthouse"; 23 24 license = licenses.mit;
+1
pkgs/tools/misc/lockfile-progs/default.nix
··· 20 20 ''; 21 21 22 22 meta = { 23 + broken = stdenv.isDarwin; 23 24 description = "Programs for locking and unlocking files and mailboxes"; 24 25 homepage = "http://packages.debian.org/sid/lockfile-progs"; 25 26 license = lib.licenses.gpl2Only;
+2 -1
pkgs/tools/misc/mutagen-compose/default.nix
··· 1 - { lib, buildGo118Module, fetchFromGitHub, fetchzip }: 1 + { stdenv, lib, buildGo118Module, fetchFromGitHub, fetchzip }: 2 2 3 3 buildGo118Module rec { 4 4 pname = "mutagen-compose"; ··· 18 18 subPackages = [ "cmd/mutagen-compose" ]; 19 19 20 20 meta = with lib; { 21 + broken = stdenv.isDarwin; 21 22 description = "Compose with Mutagen integration"; 22 23 homepage = "https://mutagen.io/"; 23 24 changelog = "https://github.com/mutagen-io/mutagen-compose/releases/tag/v${version}";
+2 -1
pkgs/tools/misc/mutagen/default.nix
··· 1 - { lib, buildGo118Module, fetchFromGitHub, fetchzip }: 1 + { stdenv, lib, buildGo118Module, fetchFromGitHub, fetchzip }: 2 2 3 3 buildGo118Module rec { 4 4 pname = "mutagen"; ··· 34 34 ''; 35 35 36 36 meta = with lib; { 37 + broken = stdenv.isDarwin; 37 38 description = "Make remote development work with your local tools"; 38 39 homepage = "https://mutagen.io/"; 39 40 changelog = "https://github.com/mutagen-io/mutagen/releases/tag/v${version}";
+1
pkgs/tools/misc/nvimpager/default.nix
··· 37 37 ''; 38 38 39 39 meta = with lib; { 40 + broken = stdenv.isDarwin; 40 41 description = "Use neovim as pager"; 41 42 longDescription = '' 42 43 Use neovim as a pager to view manpages, diffs, etc with nvim's syntax
+2 -1
pkgs/tools/misc/piston-cli/default.nix
··· 1 - { lib, python3Packages }: 1 + { stdenv, lib, python3Packages }: 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "piston-cli"; ··· 16 16 ''; 17 17 18 18 meta = with lib; { 19 + broken = stdenv.isDarwin; 19 20 description = "Piston api tool"; 20 21 homepage = "https://github.com/Shivansh-007/piston-cli"; 21 22 license = licenses.mit;
+1
pkgs/tools/misc/qflipper/default.nix
··· 102 102 }; 103 103 104 104 meta = with lib; { 105 + broken = stdenv.isDarwin; 105 106 description = "Cross-platform desktop tool to manage your flipper device"; 106 107 homepage = "https://flipperzero.one/"; 107 108 license = licenses.gpl3Only;
+2 -1
pkgs/tools/misc/steampipe/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 1 + { stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles }: 2 2 3 3 buildGoModule rec { 4 4 pname = "steampipe"; ··· 30 30 ''; 31 31 32 32 meta = with lib; { 33 + broken = stdenv.isDarwin; 33 34 homepage = "https://steampipe.io/"; 34 35 description = "select * from cloud;"; 35 36 license = licenses.agpl3;
+1
pkgs/tools/misc/tremor-rs/default.nix
··· 38 38 cargoBuildFlags = [ "-p tremor-cli" ]; 39 39 40 40 meta = with lib; { 41 + broken = stdenv.isDarwin; 41 42 description = "Early stage event processing system for unstructured data with rich support for structural pattern matching, filtering and transformation"; 42 43 homepage = "https://www.tremor.rs/"; 43 44 license = licenses.asl20;
+1
pkgs/tools/misc/tty-clock/default.nix
··· 28 28 makeFlags = [ "PREFIX=$(out)" ]; 29 29 30 30 meta = with lib; { 31 + broken = stdenv.isDarwin; 31 32 homepage = "https://github.com/xorg62/tty-clock"; 32 33 license = licenses.free; 33 34 description = "Digital clock in ncurses";
+1
pkgs/tools/misc/xburst-tools/default.nix
··· 34 34 lib.optional (gccCross != null) gccCross; 35 35 36 36 meta = { 37 + broken = stdenv.isDarwin; 37 38 description = "Qi tools to access the Ben Nanonote USB_BOOT mode"; 38 39 license = lib.licenses.gpl3; 39 40 homepage = "http://www.linux-mtd.infradead.org/";
+1
pkgs/tools/misc/xprite-editor/default.nix
··· 34 34 cargoBuildFlags = [ "--bin" "xprite-native" ]; 35 35 36 36 meta = with lib; { 37 + broken = stdenv.isDarwin; 37 38 homepage = "https://github.com/rickyhan/xprite-editor"; 38 39 description = "Pixel art editor"; 39 40 license = licenses.gpl3;
+1
pkgs/tools/misc/xstow/default.nix
··· 13 13 ]; 14 14 15 15 meta = with lib; { 16 + broken = stdenv.isDarwin; 16 17 description = "A replacement of GNU Stow written in C++"; 17 18 homepage = "http://xstow.sourceforge.net"; 18 19 license = licenses.gpl2Only;
+2 -1
pkgs/tools/misc/yubikey-personalization-gui/default.nix
··· 1 - { lib, fetchurl, mkDerivation, pkg-config, qtbase, qmake, imagemagick 1 + { stdenv, lib, fetchurl, mkDerivation, pkg-config, qtbase, qmake, imagemagick 2 2 , libyubikey, yubikey-personalization }: 3 3 4 4 mkDerivation rec { ··· 34 34 ''; 35 35 36 36 meta = with lib; { 37 + broken = stdenv.isDarwin; 37 38 homepage = "https://developers.yubico.com/yubikey-personalization-gui"; 38 39 description = "A QT based cross-platform utility designed to facilitate reconfiguration of the Yubikey"; 39 40 license = licenses.bsd2;
+1
pkgs/tools/networking/davix/default.nix
··· 64 64 ]; 65 65 66 66 meta = with lib; { 67 + broken = stdenv.isDarwin; 67 68 description = "Toolkit for Http-based file management"; 68 69 69 70 longDescription = "Davix is a toolkit designed for file
+1
pkgs/tools/networking/dcap/default.nix
··· 33 33 outputs = [ "bin" "dev" "out" "man" "doc" ]; 34 34 35 35 meta = with lib; { 36 + broken = stdenv.isDarwin; 36 37 description = "dCache access protocol client library"; 37 38 homepage = "https://github.com/dCache/dcap"; 38 39 changelog = "https://github.com/dCache/dcap/blob/master/ChangeLog";
+1
pkgs/tools/networking/eternal-terminal/default.nix
··· 50 50 doCheck = true; 51 51 52 52 meta = with lib; { 53 + broken = stdenv.isDarwin; 53 54 description = "Remote shell that automatically reconnects without interrupting the session"; 54 55 homepage = "https://eternalterminal.dev/"; 55 56 license = licenses.asl20;
+3 -1
pkgs/tools/networking/ghostunnel/default.nix
··· 1 - { buildGoModule 1 + { stdenv 2 + , buildGoModule 2 3 , fetchFromGitHub 3 4 , lib 4 5 , nixosTests ··· 33 32 }; 34 33 35 34 meta = with lib; { 35 + broken = stdenv.isDarwin; 36 36 description = "A simple TLS proxy with mutual authentication support for securing non-TLS backend applications"; 37 37 homepage = "https://github.com/ghostunnel/ghostunnel#readme"; 38 38 license = licenses.asl20;
+3 -1
pkgs/tools/networking/godspeed/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildGoModule 3 4 , fetchFromGitHub 4 5 , libpcap ··· 27 26 ''; 28 27 29 28 meta = with lib; { 29 + broken = stdenv.isDarwin; 30 30 description = "Manager for reverse shells"; 31 31 homepage = "https://github.com/redcode-labs/GodSpeed"; 32 32 license = with licenses; [ mit ];
+2 -1
pkgs/tools/networking/gost/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule }: 1 + { stdenv, lib, fetchFromGitHub, buildGoModule }: 2 2 3 3 buildGoModule rec { 4 4 pname = "gost"; ··· 42 42 ''; 43 43 44 44 meta = with lib; { 45 + broken = stdenv.isDarwin; 45 46 description = "A simple tunnel written in golang"; 46 47 homepage = "https://github.com/ginuerzh/gost"; 47 48 license = licenses.mit;
+1
pkgs/tools/networking/magic-wormhole-rs/default.nix
··· 24 24 doCheck = false; 25 25 26 26 meta = with lib; { 27 + broken = stdenv.isDarwin; 27 28 description = "Rust implementation of Magic Wormhole, with new features and enhancements"; 28 29 homepage = "https://github.com/magic-wormhole/magic-wormhole.rs"; 29 30 license = licenses.eupl12;
+1
pkgs/tools/networking/quicktun/default.nix
··· 23 23 ''; 24 24 25 25 meta = with lib; { 26 + broken = stdenv.isDarwin; 26 27 description = "Very simple, yet secure VPN software"; 27 28 homepage = "http://wiki.ucis.nl/QuickTun"; 28 29 maintainers = [ maintainers.fpletz ];
+1
pkgs/tools/networking/slowlorust/default.nix
··· 18 18 cargoSha256 = "Wu1mm+yJw2SddddxC5NfnMWLr+dplnRxH3AJ1/mTAKM="; 19 19 20 20 meta = with lib; { 21 + broken = stdenv.isDarwin; 21 22 description = "Lightweight slowloris (HTTP DoS) tool"; 22 23 homepage = "https://github.com/MJVL/slowlorust"; 23 24 license = licenses.mit;
+1
pkgs/tools/networking/sockperf/default.nix
··· 22 22 doCheck = true; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 description = "Network Benchmarking Utility"; 26 27 homepage = "https://github.com/Mellanox/sockperf"; 27 28 license = licenses.bsd3;
+1
pkgs/tools/networking/ssh-askpass-fullscreen/default.nix
··· 22 22 ]; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 description = "A small SSH askpass GUI using GTK+2"; 26 27 homepage = "https://github.com/atj/ssh-askpass-fullscreen"; 27 28 license = licenses.gpl2;
+1
pkgs/tools/networking/tinyproxy/default.nix
··· 17 17 configureFlags = lib.optionals withDebug [ "--enable-debug" ]; # Enable debugging support code and methods. 18 18 19 19 meta = with lib; { 20 + broken = stdenv.isDarwin; 20 21 homepage = "https://tinyproxy.github.io/"; 21 22 description = "A light-weight HTTP/HTTPS proxy daemon for POSIX operating systems"; 22 23 license = licenses.gpl2Only;
+9
pkgs/tools/package-management/cargo-deb/default.nix
··· 35 35 description = "Generate Debian packages from information in Cargo.toml"; 36 36 homepage = "https://github.com/mmstick/cargo-deb"; 37 37 license = licenses.mit; 38 + # test failures: 39 + # control::tests::generate_scripts_generates_maintainer_scripts_for_unit 40 + # dh_installsystemd::tests::find_units_in_empty_dir_finds_nothing 41 + # dh_lib::tests::apply_with_no_matching_files 42 + # dh_lib::tests::debhelper_script_subst_with_generated_file_only 43 + # dh_lib::tests::debhelper_script_subst_with_no_matching_files 44 + # dh_lib::tests::pkgfile_finds_most_specific_match_without_pkg_file 45 + # dh_lib::tests::pkgfile_finds_most_specific_match_without_unit_file 46 + broken = (stdenv.isDarwin && stdenv.isx86_64); 38 47 maintainers = with maintainers; [ Br1ght0ne ]; 39 48 }; 40 49 }
+4 -1
pkgs/tools/security/boofuzz/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , fetchFromGitHub 3 4 , python3 4 5 }: ··· 51 50 homepage = "https://github.com/jtpereyda/boofuzz"; 52 51 license = with licenses; [ gpl2Plus ]; 53 52 maintainers = with maintainers; [ fab ]; 53 + # FAILED unit_tests/test_monitors.py::TestProcessMonitor::test_set_options_persistent 54 + broken = (stdenv.isDarwin && stdenv.isx86_64); 54 55 }; 55 56 }
+1
pkgs/tools/security/dieharder/default.nix
··· 22 22 }; 23 23 24 24 meta = with lib; { 25 + broken = stdenv.isDarwin; 25 26 description = "A Random Number Generator test suite"; 26 27 homepage = "https://webhome.phy.duke.edu/~rgb/General/dieharder.php"; 27 28 license = licenses.gpl2Plus;
+2 -1
pkgs/tools/security/onioncircuits/default.nix
··· 1 - { lib, fetchgit, python3, intltool, gtk3, gobject-introspection, gnome }: 1 + { stdenv, lib, fetchgit, python3, intltool, gtk3, gobject-introspection, gnome }: 2 2 3 3 python3.pkgs.buildPythonApplication rec { 4 4 pname = "onioncircuits"; ··· 21 21 ''; 22 22 23 23 meta = with lib; { 24 + broken = stdenv.isDarwin; 24 25 homepage = "https://tails.boum.org"; 25 26 description = "GTK application to display Tor circuits and streams"; 26 27 license = licenses.gpl3;
+3 -1
pkgs/tools/security/sx-go/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildGoModule 3 4 , fetchFromGitHub 4 5 , libpcap ··· 28 27 ''; 29 28 30 29 meta = with lib; { 30 + broken = stdenv.isDarwin; 31 31 description = "Command-line network scanner"; 32 32 homepage = "https://github.com/v-byte-cpu/sx"; 33 33 license = licenses.mit;
+1
pkgs/tools/security/tcpcrypt/default.nix
··· 26 26 enableParallelBuilding = true; 27 27 28 28 meta = { 29 + broken = stdenv.isDarwin; 29 30 homepage = "http://tcpcrypt.org/"; 30 31 description = "Fast TCP encryption"; 31 32 platforms = platforms.all;
+3 -1
pkgs/tools/security/traitor/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildGoModule 3 4 , fetchFromGitHub 4 5 }: ··· 18 17 vendorSha256 = null; 19 18 20 19 meta = with lib; { 20 + broken = stdenv.isDarwin; 21 21 description = "Automatic Linux privilege escalation"; 22 22 longDescription = '' 23 23 Automatically exploit low-hanging fruit to pop a root shell. Traitor packages
+1
pkgs/tools/system/gptfdisk/default.nix
··· 48 48 }; 49 49 50 50 meta = with lib; { 51 + broken = stdenv.isDarwin; 51 52 description = "Set of text-mode partitioning tools for Globally Unique Identifier (GUID) Partition Table (GPT) disks"; 52 53 license = licenses.gpl2; 53 54 homepage = "https://www.rodsbooks.com/gdisk/";
+1
pkgs/tools/system/netdata/default.nix
··· 96 96 }; 97 97 98 98 meta = { 99 + broken = stdenv.isDarwin; 99 100 description = "Real-time performance monitoring tool"; 100 101 homepage = "https://www.netdata.cloud/"; 101 102 license = licenses.gpl3Plus;
+1
pkgs/tools/system/socklog/default.nix
··· 50 50 doCheck = true; 51 51 52 52 meta = { 53 + broken = stdenv.isDarwin; 53 54 description = "System and kernel logging services"; 54 55 homepage = "http://smarden.org/socklog/"; 55 56 license = licenses.publicDomain;
+1
pkgs/tools/system/zenith/default.nix
··· 34 34 ''; 35 35 36 36 meta = with lib; { 37 + broken = stdenv.isDarwin; 37 38 description = "Sort of like top or htop but with zoom-able charts, network, and disk usage" 38 39 + lib.optionalString nvidiaSupport ", and NVIDIA GPU usage"; 39 40 homepage = "https://github.com/bvaisvil/zenith";
+1
pkgs/tools/text/mmdoc/default.nix
··· 28 28 doCheck = stdenv.isx86_64; 29 29 30 30 meta = with lib; { 31 + broken = stdenv.isDarwin; 31 32 description = "Minimal Markdown Documentation"; 32 33 homepage = "https://github.com/ryantm/mmdoc"; 33 34 license = licenses.cc0;
+1
pkgs/tools/text/robodoc/default.nix
··· 20 20 hardeningDisable = [ "format" ]; 21 21 22 22 meta = with lib; { 23 + broken = stdenv.isDarwin; 23 24 homepage = "https://github.com/gumpu/ROBODoc"; 24 25 description = "Documentation Extraction Tool"; 25 26 longDescription = ''
+3 -1
pkgs/tools/text/zoekt/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildGoModule 3 4 , fetchFromGitHub 4 5 , git ··· 22 21 ]; 23 22 24 23 meta = with lib; { 24 + broken = stdenv.isDarwin; 25 25 description = "Fast trigram based code search"; 26 26 homepage = "https://github.com/google/zoekt"; 27 27 license = licenses.asl20;
+1
pkgs/tools/typesetting/htmldoc/default.nix
··· 15 15 ++ lib.optionals stdenv.isDarwin [ Foundation SystemConfiguration ]; 16 16 17 17 meta = with lib; { 18 + broken = stdenv.isDarwin; 18 19 description = "Converts HTML files to PostScript and PDF"; 19 20 homepage = "https://michaelrsweet.github.io/htmldoc"; 20 21 changelog = "https://github.com/michaelrsweet/htmldoc/releases/tag/v${version}";
+1
pkgs/tools/typesetting/sile/default.nix
··· 100 100 outputs = [ "out" "doc" "man" "dev" ]; 101 101 102 102 meta = with lib; { 103 + broken = stdenv.isDarwin; 103 104 description = "A typesetting system"; 104 105 longDescription = '' 105 106 SILE is a typesetting system; its job is to produce beautiful
+1
pkgs/tools/video/untrunc-anthwlock/default.nix
··· 27 27 enableParallelBuilding = true; 28 28 29 29 meta = with lib; { 30 + broken = stdenv.isDarwin; 30 31 description = "Restore a truncated mp4/mov (improved version of ponchio/untrunc)"; 31 32 homepage = "https://github.com/anthwlock/untrunc"; 32 33 license = licenses.gpl2;
+4 -1
pkgs/tools/virtualization/awless/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 1 + { stdenv, lib, buildGoPackage, fetchFromGitHub }: 2 2 3 3 buildGoPackage rec { 4 4 pname = "awless"; ··· 19 19 platforms = with platforms; linux ++ darwin; 20 20 license = licenses.asl20; 21 21 maintainers = with maintainers; [ pradeepchhetri swdunlop ]; 22 + # asm: InitTextSym double init for "".Syscall 23 + # panic: invalid use of LSym - NewFuncInfo with Extra of type *obj.FuncInfo 24 + broken = (stdenv.isLinux && stdenv.isAarch64); 22 25 }; 23 26 }
+1
pkgs/top-level/lua-packages.nix
··· 95 95 ''; 96 96 97 97 meta = with lib; { 98 + broken = stdenv.isDarwin; 98 99 description = "Lightweight UNIX I/O and POSIX binding for Lua"; 99 100 homepage = "https://www.gitano.org.uk/luxio/"; 100 101 license = licenses.mit;