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

authored by

Rick van Schijndel and committed by
Janne Heß
11ee22d7 43370114

+38 -9
+1 -1
pkgs/development/compilers/cmdstan/default.nix
··· 42 42 preFixup = "rm -rf $(pwd)"; 43 43 44 44 meta = { 45 - broken = stdenv.isDarwin; 45 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 46 46 description = "Command-line interface to Stan"; 47 47 longDescription = '' 48 48 Stan is a probabilistic programming language implementing full Bayesian
+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/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;
+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 ];
+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/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
+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/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;
+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/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/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/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/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/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/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 -1
pkgs/development/libraries/pangomm/2.42.nix
··· 28 28 }; 29 29 30 30 meta = with lib; { 31 - broken = stdenv.isDarwin; 31 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 32 32 description = "C++ interface to the Pango text rendering library"; 33 33 homepage = "https://www.pango.org/"; 34 34 license = with licenses; [ lgpl2 lgpl21 ];
+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/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/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/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/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 '';
+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 = ''
+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.
+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;