treewide: pkgs/applications: mark broken for aarch64-linux

authored by Rick van Schijndel and committed by Janne Heß 43370114 010f6ee3

+81 -23
+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 ··· 86 87 ]; 87 88 88 89 meta = with lib;{ 90 + broken = (stdenv.isLinux && stdenv.isAarch64); 89 91 description = "An audio effect processor for PipeWire clients"; 90 92 homepage = "https://github.com/Audio4Linux/JDSP4Linux"; 91 93 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
+1 -1
pkgs/applications/audio/muso/default.nix
··· 29 29 cargoSha256 = "1hgdzyz005244f2mh97js9ga0a6s2hcd6iydz07f1hmhsh1j2bwy"; 30 30 31 31 meta = with lib; { 32 - broken = stdenv.isDarwin; 32 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 33 33 description = "An automatic music sorter (based on ID3 tags)"; 34 34 homepage = "https://github.com/quebin31/muso"; 35 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 ··· 29 30 doCheck = false; 30 31 31 32 meta = with lib; { 33 + broken = (stdenv.isLinux && stdenv.isAarch64); 32 34 description = "A modern Volume Mixer for PulseAudio"; 33 35 homepage = "https://github.com/Aurailus/Myxer"; 34 36 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/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;
+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/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 ··· 48 49 homepage = "https://litecoin.org/"; 49 50 platforms = platforms.unix; 50 51 license = licenses.mit; 51 - broken = stdenv.isDarwin; 52 52 maintainers = with maintainers; [ offline ]; 53 53 }; 54 54 }
+1 -1
pkgs/applications/blockchains/particl-core/default.nix
··· 43 43 enableParallelBuilding = true; 44 44 45 45 meta = { 46 - broken = stdenv.isDarwin; 46 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 47 47 description = "Privacy-Focused Marketplace & Decentralized Application Platform"; 48 48 longDescription = '' 49 49 An open source, decentralized privacy platform built for global person to person eCommerce.
+1 -1
pkgs/applications/blockchains/pivx/default.nix
··· 64 64 ''; 65 65 66 66 meta = with lib; { 67 - broken = stdenv.isDarwin; 67 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 68 68 description = "An open source crypto-currency focused on fast private transactions"; 69 69 longDescription = '' 70 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 = '' ··· 170 171 inherit pname version src wmClass jdk product; 171 172 productShort = "PyCharm"; 172 173 meta = with lib; { 174 + broken = (stdenv.isLinux && stdenv.isAarch64); 173 175 homepage = "https://www.jetbrains.com/pycharm/"; 174 176 inherit description license platforms; 175 177 longDescription = ''
+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/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;
+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 -1
pkgs/applications/emulators/mame/default.nix
··· 146 146 ''; 147 147 148 148 meta = with lib; { 149 - broken = stdenv.isDarwin; 149 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 150 150 description = "Is a multi-purpose emulation framework"; 151 151 homepage = "https://www.mamedev.org/"; 152 152 license = with licenses; [ bsd3 gpl2Plus ];
+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;
+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 -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;
+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
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
+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;
+1 -1
pkgs/applications/networking/cluster/hubble/default.nix
··· 14 14 vendorSha256 = null; 15 15 16 16 meta = with lib; { 17 - broken = stdenv.isDarwin; 17 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 18 18 description = "Network, Service & Security Observability for Kubernetes using eBPF"; 19 19 license = licenses.asl20; 20 20 homepage = "https://github.com/cilium/hubble/";
+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/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 ··· 48 49 ''; 49 50 50 51 meta = with lib; { 52 + broken = (stdenv.isLinux && stdenv.isAarch64); 51 53 description = "Experimental terminal mail client aiming for configurability and extensibility with sane defaults"; 52 54 homepage = "https://meli.delivery"; 53 55 license = licenses.gpl3;
+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 -1
pkgs/applications/office/ledger/default.nix
··· 50 50 ''; 51 51 52 52 meta = with lib; { 53 - broken = stdenv.isDarwin; 53 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 54 54 homepage = "https://ledger-cli.org/"; 55 55 description = "A double-entry accounting system with a command-line reporting interface"; 56 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 ··· 81 82 ]; 82 83 83 84 meta = with lib; { 85 + broken = (stdenv.isLinux && stdenv.isAarch64); 84 86 description = "A mind-mapping application for KDE"; 85 87 license = licenses.mit; 86 88 homepage = "https://waf.io/semantik.html";
+1 -1
pkgs/applications/radio/uhd/3.5.nix
··· 143 143 ''; 144 144 145 145 meta = with lib; { 146 - broken = stdenv.isDarwin; 146 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 147 147 description = "USRP Hardware Driver (for Software Defined Radio)"; 148 148 longDescription = '' 149 149 The USRP Hardware Driver (UHD) software is the hardware driver for all
+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/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/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 -1
pkgs/applications/science/electronics/xyce/default.nix
··· 168 168 ''; 169 169 170 170 meta = with lib; { 171 - broken = stdenv.isDarwin; 171 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 172 172 description = "High-performance analog circuit simulator"; 173 173 longDescription = '' 174 174 Xyce is a SPICE-compatible, high-performance analog circuit simulator,
+1 -1
pkgs/applications/science/logic/formula/default.nix
··· 23 23 ''; 24 24 25 25 meta = with lib; { 26 - broken = stdenv.isDarwin; 26 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 27 27 description = "Formal Specifications for Verification and Synthesis"; 28 28 homepage = "https://github.com/VUISIS/formula-dotnet"; 29 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/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;
+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 -1
pkgs/applications/terminal-emulators/contour/default.nix
··· 19 19 passthru.tests.test = nixosTests.terminal-emulators.contour; 20 20 21 21 meta = with lib; { 22 + # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/contour.x86_64-darwin 23 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 22 24 description = "Modern C++ Terminal Emulator"; 23 25 homepage = "https://github.com/christianparpart/contour"; 24 26 changelog = "https://github.com/christianparpart/contour/blob/HEAD/Changelog.md"; 25 27 license = licenses.asl20; 26 28 maintainers = with maintainers; [ fortuneteller2k ]; 27 29 platforms = platforms.unix; 28 - broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/contour.x86_64-darwin 29 30 }; 30 31 }
+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 }
+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/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;