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 preFixup = "rm -rf $(pwd)"; 43 44 meta = { 45 - broken = stdenv.isDarwin; 46 description = "Command-line interface to Stan"; 47 longDescription = '' 48 Stan is a probabilistic programming language implementing full Bayesian
··· 42 preFixup = "rm -rf $(pwd)"; 43 44 meta = { 45 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 46 description = "Command-line interface to Stan"; 47 longDescription = '' 48 Stan is a probabilistic programming language implementing full Bayesian
+1
pkgs/development/compilers/inform7/default.nix
··· 22 ''; 23 24 meta = with lib; { 25 description = "A design system for interactive fiction"; 26 homepage = "http://inform7.com/"; 27 license = licenses.artistic2;
··· 22 ''; 23 24 meta = with lib; { 25 + broken = (stdenv.isLinux && stdenv.isAarch64); 26 description = "A design system for interactive fiction"; 27 homepage = "http://inform7.com/"; 28 license = licenses.artistic2;
+1
pkgs/development/compilers/mkcl/default.nix
··· 55 enableParallelBuilding = true; 56 57 meta = with lib; { 58 description = "ANSI Common Lisp Implementation"; 59 homepage = "https://common-lisp.net/project/mkcl/"; 60 license = licenses.lgpl2Plus;
··· 55 enableParallelBuilding = true; 56 57 meta = with lib; { 58 + broken = (stdenv.isLinux && stdenv.isAarch64); 59 description = "ANSI Common Lisp Implementation"; 60 homepage = "https://common-lisp.net/project/mkcl/"; 61 license = licenses.lgpl2Plus;
+2 -1
pkgs/development/compilers/myrddin/default.nix
··· 48 doCheck = true; 49 50 meta = with lib; { 51 description = "Systems language that is both powerful and fun to use"; 52 homepage = "https://myrlang.org/"; 53 license = licenses.mit; 54 maintainers = with maintainers; [ luc65r ]; 55 platforms = platforms.all; 56 - broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/myrddin.x86_64-darwin 57 }; 58 }
··· 48 doCheck = true; 49 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; 53 description = "Systems language that is both powerful and fun to use"; 54 homepage = "https://myrlang.org/"; 55 license = licenses.mit; 56 maintainers = with maintainers; [ luc65r ]; 57 platforms = platforms.all; 58 }; 59 }
+2 -1
pkgs/development/compilers/osl/default.nix
··· 1 - { clangStdenv, lib, fetchFromGitHub, cmake, zlib, openexr, 2 openimageio, llvm, boost165, flex, bison, partio, pugixml, 3 util-linux, python3 4 }: ··· 38 ]; 39 # TODO: How important is partio? CMake doesn't seem to find it 40 meta = with lib; { 41 description = "Advanced shading language for production GI renderers"; 42 homepage = "http://opensource.imageworks.com/?p=osl"; 43 maintainers = with maintainers; [ hodapp ];
··· 1 + { stdenv, clangStdenv, lib, fetchFromGitHub, cmake, zlib, openexr, 2 openimageio, llvm, boost165, flex, bison, partio, pugixml, 3 util-linux, python3 4 }: ··· 38 ]; 39 # TODO: How important is partio? CMake doesn't seem to find it 40 meta = with lib; { 41 + broken = (stdenv.isLinux && stdenv.isAarch64); 42 description = "Advanced shading language for production GI renderers"; 43 homepage = "http://opensource.imageworks.com/?p=osl"; 44 maintainers = with maintainers; [ hodapp ];
+2 -1
pkgs/development/compilers/yap/default.nix
··· 20 NIX_CFLAGS_COMPILE = "-fpermissive -fcommon"; 21 22 meta = { 23 homepage = "http://www.dcc.fc.up.pt/~vsc/Yap/"; 24 description = "A ISO-compatible high-performance Prolog compiler"; 25 license = lib.licenses.artistic2; 26 27 platforms = lib.platforms.linux; 28 - broken = !stdenv.is64bit; # the linux 32 bit build fails. 29 }; 30 }
··· 20 NIX_CFLAGS_COMPILE = "-fpermissive -fcommon"; 21 22 meta = { 23 + # the linux 32 bit build fails. 24 + broken = (stdenv.isLinux && stdenv.isAarch64) || !stdenv.is64bit; 25 homepage = "http://www.dcc.fc.up.pt/~vsc/Yap/"; 26 description = "A ISO-compatible high-performance Prolog compiler"; 27 license = lib.licenses.artistic2; 28 29 platforms = lib.platforms.linux; 30 }; 31 }
+1
pkgs/development/interpreters/picoc/default.nix
··· 34 ''; 35 36 meta = with lib; { 37 description = "Very small C interpreter for scripting"; 38 longDescription = '' 39 PicoC is a very small C interpreter for scripting. It was originally
··· 34 ''; 35 36 meta = with lib; { 37 + broken = (stdenv.isLinux && stdenv.isAarch64); 38 description = "Very small C interpreter for scripting"; 39 longDescription = '' 40 PicoC is a very small C interpreter for scripting. It was originally
+2 -1
pkgs/development/interpreters/picolisp/default.nix
··· 50 ''; 51 52 meta = { 53 description = "A simple Lisp with an integrated database"; 54 homepage = "https://picolisp.com/"; 55 license = licenses.mit; 56 platforms = platforms.all; 57 - broken = stdenv.isDarwin; # times out 58 maintainers = with maintainers; [ raskin tohl ]; 59 }; 60
··· 50 ''; 51 52 meta = { 53 + # darwin: build times out 54 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 55 description = "A simple Lisp with an integrated database"; 56 homepage = "https://picolisp.com/"; 57 license = licenses.mit; 58 platforms = platforms.all; 59 maintainers = with maintainers; [ raskin tohl ]; 60 }; 61
+2 -1
pkgs/development/interpreters/starlark/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule }: 2 buildGoModule rec { 3 pname = "starlark"; 4 version = "unstable-2022-03-02"; ··· 15 ldflags = [ "-s" "-w" ]; 16 17 meta = with lib; { 18 homepage = "https://github.com/google/starlark-go"; 19 description = "An interpreter for Starlark, implemented in Go"; 20 license = licenses.bsd3;
··· 1 + { stdenv, lib, fetchFromGitHub, buildGoModule }: 2 buildGoModule rec { 3 pname = "starlark"; 4 version = "unstable-2022-03-02"; ··· 15 ldflags = [ "-s" "-w" ]; 16 17 meta = with lib; { 18 + broken = (stdenv.isLinux && stdenv.isAarch64); 19 homepage = "https://github.com/google/starlark-go"; 20 description = "An interpreter for Starlark, implemented in Go"; 21 license = licenses.bsd3;
+1
pkgs/development/interpreters/unicon-lang/default.nix
··· 35 ''; 36 37 meta = with lib; { 38 description = "A very high level, goal-directed, object-oriented, general purpose applications language"; 39 maintainers = with maintainers; [ vrthra ]; 40 platforms = platforms.linux;
··· 35 ''; 36 37 meta = with lib; { 38 + broken = (stdenv.isLinux && stdenv.isAarch64); 39 description = "A very high level, goal-directed, object-oriented, general purpose applications language"; 40 maintainers = with maintainers; [ vrthra ]; 41 platforms = platforms.linux;
+1
pkgs/development/libraries/cmrt/default.nix
··· 16 buildInputs = [ libdrm libva ]; 17 18 meta = with lib; { 19 homepage = "https://01.org/linuxmedia"; 20 description = "Intel C for Media Runtime"; 21 longDescription = "Media GPU kernel manager for Intel G45 & HD Graphics family";
··· 16 buildInputs = [ libdrm libva ]; 17 18 meta = with lib; { 19 + broken = (stdenv.isLinux && stdenv.isAarch64); 20 homepage = "https://01.org/linuxmedia"; 21 description = "Intel C for Media Runtime"; 22 longDescription = "Media GPU kernel manager for Intel G45 & HD Graphics family";
+1
pkgs/development/libraries/libagar/libagar_test.nix
··· 18 buildInputs = [ perl bsdbuild libagar libjpeg libpng openssl ]; 19 20 meta = with lib; { 21 description = "Tests for libagar"; 22 homepage = "http://libagar.org/index.html"; 23 license = with licenses; bsd3;
··· 18 buildInputs = [ perl bsdbuild libagar libjpeg libpng openssl ]; 19 20 meta = with lib; { 21 + broken = (stdenv.isLinux && stdenv.isAarch64); 22 description = "Tests for libagar"; 23 homepage = "http://libagar.org/index.html"; 24 license = with licenses; bsd3;
+1
pkgs/development/libraries/libhugetlbfs/default.nix
··· 33 installTargets = [ "install" "install-docs" ]; 34 35 meta = with lib; { 36 description = "library and utilities for Linux hugepages"; 37 maintainers = with maintainers; [ qyliss ]; 38 license = licenses.lgpl21Plus;
··· 33 installTargets = [ "install" "install-docs" ]; 34 35 meta = with lib; { 36 + broken = (stdenv.isLinux && stdenv.isAarch64); 37 description = "library and utilities for Linux hugepages"; 38 maintainers = with maintainers; [ qyliss ]; 39 license = licenses.lgpl21Plus;
+1
pkgs/development/libraries/libportal/default.nix
··· 61 ''; 62 63 meta = with lib; { 64 description = "Flatpak portal library"; 65 homepage = "https://github.com/flatpak/libportal"; 66 license = licenses.lgpl3Plus;
··· 61 ''; 62 63 meta = with lib; { 64 + broken = (stdenv.isLinux && stdenv.isAarch64); 65 description = "Flatpak portal library"; 66 homepage = "https://github.com/flatpak/libportal"; 67 license = licenses.lgpl3Plus;
+1
pkgs/development/libraries/libqalculate/default.nix
··· 39 ''; 40 41 meta = with lib; { 42 description = "An advanced calculator library"; 43 homepage = "http://qalculate.github.io"; 44 license = licenses.gpl2Plus;
··· 39 ''; 40 41 meta = with lib; { 42 + broken = (stdenv.isLinux && stdenv.isAarch64); 43 description = "An advanced calculator library"; 44 homepage = "http://qalculate.github.io"; 45 license = licenses.gpl2Plus;
+1
pkgs/development/libraries/libsnark/default.nix
··· 18 }; 19 20 meta = with lib; { 21 description = "C++ library for zkSNARKs"; 22 homepage = "https://github.com/scipr-lab/libsnark"; 23 license = licenses.mit;
··· 18 }; 19 20 meta = with lib; { 21 + broken = (stdenv.isLinux && stdenv.isAarch64); 22 description = "C++ library for zkSNARKs"; 23 homepage = "https://github.com/scipr-lab/libsnark"; 24 license = licenses.mit;
+2 -1
pkgs/development/libraries/libtorrent-rasterbar/1.1.nix
··· 41 ]; 42 43 meta = with lib; { 44 homepage = "https://libtorrent.org/"; 45 description = "A C++ BitTorrent implementation focusing on efficiency and scalability"; 46 license = licenses.bsd3; 47 maintainers = [ ]; 48 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 }
··· 41 ]; 42 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; 46 homepage = "https://libtorrent.org/"; 47 description = "A C++ BitTorrent implementation focusing on efficiency and scalability"; 48 license = licenses.bsd3; 49 maintainers = [ ]; 50 platforms = platforms.unix; 51 }; 52 }
+1
pkgs/development/libraries/libxsmm/default.nix
··· 39 ''; 40 41 meta = with lib; { 42 description = "Library targeting Intel Architecture for specialized dense and sparse matrix operations, and deep learning primitives"; 43 license = licenses.bsd3; 44 homepage = "https://github.com/hfp/libxsmm";
··· 39 ''; 40 41 meta = with lib; { 42 + broken = (stdenv.isLinux && stdenv.isAarch64); 43 description = "Library targeting Intel Architecture for specialized dense and sparse matrix operations, and deep learning primitives"; 44 license = licenses.bsd3; 45 homepage = "https://github.com/hfp/libxsmm";
+1
pkgs/development/libraries/neardal/default.nix
··· 23 configureFlags = [ "--disable-dependency-tracking" "--disable-traces" ]; 24 25 meta = with lib; { 26 description = "C APIs to exchange datas with the NFC daemon 'Neard'"; 27 license = licenses.lgpl2; 28 homepage = "https://01.org/linux-nfc";
··· 23 configureFlags = [ "--disable-dependency-tracking" "--disable-traces" ]; 24 25 meta = with lib; { 26 + broken = (stdenv.isLinux && stdenv.isAarch64); 27 description = "C APIs to exchange datas with the NFC daemon 'Neard'"; 28 license = licenses.lgpl2; 29 homepage = "https://01.org/linux-nfc";
+1 -1
pkgs/development/libraries/pangomm/2.42.nix
··· 28 }; 29 30 meta = with lib; { 31 - broken = stdenv.isDarwin; 32 description = "C++ interface to the Pango text rendering library"; 33 homepage = "https://www.pango.org/"; 34 license = with licenses; [ lgpl2 lgpl21 ];
··· 28 }; 29 30 meta = with lib; { 31 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 32 description = "C++ interface to the Pango text rendering library"; 33 homepage = "https://www.pango.org/"; 34 license = with licenses; [ lgpl2 lgpl21 ];
+1
pkgs/development/libraries/physics/geant4/default.nix
··· 119 ''; 120 121 meta = with lib; { 122 description = "A toolkit for the simulation of the passage of particles through matter"; 123 longDescription = '' 124 Geant4 is a toolkit for the simulation of the passage of particles through matter.
··· 119 ''; 120 121 meta = with lib; { 122 + broken = (stdenv.isLinux && stdenv.isAarch64); 123 description = "A toolkit for the simulation of the passage of particles through matter"; 124 longDescription = '' 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 requiredSystemFeatures = [ "big-parallel" ]; 234 235 meta = with lib; { 236 description = "A web engine based on the Chromium web browser"; 237 platforms = platforms.linux; 238 # This build takes a long time; particularly on slow architectures
··· 233 requiredSystemFeatures = [ "big-parallel" ]; 234 235 meta = with lib; { 236 + broken = (stdenv.isLinux && stdenv.isAarch64); 237 description = "A web engine based on the Chromium web browser"; 238 platforms = platforms.linux; 239 # This build takes a long time; particularly on slow architectures
+1
pkgs/development/libraries/qtscriptgenerator/default.nix
··· 42 hardeningDisable = [ "format" ]; 43 44 meta = { 45 description = "QtScript bindings generator"; 46 homepage = "https://code.qt.io/cgit/qt-labs/qtscriptgenerator.git/"; 47 inherit (qt4.meta) platforms;
··· 42 hardeningDisable = [ "format" ]; 43 44 meta = { 45 + broken = (stdenv.isLinux && stdenv.isAarch64); 46 description = "QtScript bindings generator"; 47 homepage = "https://code.qt.io/cgit/qt-labs/qtscriptgenerator.git/"; 48 inherit (qt4.meta) platforms;
+1
pkgs/development/libraries/science/math/liblbfgs/default.nix
··· 10 }; 11 12 meta = { 13 description = "Library of Limited-memory Broyden-Fletcher-Goldfarb-Shanno (L-BFGS)"; 14 homepage = "http://www.chokkan.org/software/liblbfgs/"; 15 license = lib.licenses.mit;
··· 10 }; 11 12 meta = { 13 + broken = (stdenv.isLinux && stdenv.isAarch64); 14 description = "Library of Limited-memory Broyden-Fletcher-Goldfarb-Shanno (L-BFGS)"; 15 homepage = "http://www.chokkan.org/software/liblbfgs/"; 16 license = lib.licenses.mit;
+1
pkgs/development/libraries/science/networking/ns-3/default.nix
··· 101 hardeningDisable = [ "fortify" "strictoverflow"]; 102 103 meta = with lib; { 104 homepage = "http://www.nsnam.org"; 105 license = licenses.gpl3; 106 description = "A discrete time event network simulator";
··· 101 hardeningDisable = [ "fortify" "strictoverflow"]; 102 103 meta = with lib; { 104 + broken = (stdenv.isLinux && stdenv.isAarch64); 105 homepage = "http://www.nsnam.org"; 106 license = licenses.gpl3; 107 description = "A discrete time event network simulator";
+1
pkgs/development/libraries/vc/0.7.nix
··· 22 ''; 23 24 meta = with lib; { 25 description = "Library for multiprecision complex arithmetic with exact rounding"; 26 homepage = "https://github.com/VcDevel/Vc"; 27 license = licenses.bsd3;
··· 22 ''; 23 24 meta = with lib; { 25 + broken = (stdenv.isLinux && stdenv.isAarch64); 26 description = "Library for multiprecision complex arithmetic with exact rounding"; 27 homepage = "https://github.com/VcDevel/Vc"; 28 license = licenses.bsd3;
+1
pkgs/development/libraries/xed/default.nix
··· 37 dontInstall = true; # already installed during buildPhase 38 39 meta = with lib; { 40 description = "Intel X86 Encoder Decoder (Intel XED)"; 41 homepage = "https://intelxed.github.io/"; 42 license = licenses.asl20;
··· 37 dontInstall = true; # already installed during buildPhase 38 39 meta = with lib; { 40 + broken = (stdenv.isLinux && stdenv.isAarch64); 41 description = "Intel X86 Encoder Decoder (Intel XED)"; 42 homepage = "https://intelxed.github.io/"; 43 license = licenses.asl20;
+1
pkgs/development/tools/build-managers/fac/default.nix
··· 28 ''; 29 30 meta = with lib; { 31 description = '' 32 A build system that uses ptrace to handle dependencies automatically 33 '';
··· 28 ''; 29 30 meta = with lib; { 31 + broken = (stdenv.isLinux && stdenv.isAarch64); 32 description = '' 33 A build system that uses ptrace to handle dependencies automatically 34 '';
+1
pkgs/development/tools/misc/igprof/default.nix
··· 20 CXXFLAGS = ["-fPIC" "-O2" "-w" "-fpermissive"]; 21 22 meta = { 23 description = "The Ignominous Profiler"; 24 25 longDescription = ''
··· 20 CXXFLAGS = ["-fPIC" "-O2" "-w" "-fpermissive"]; 21 22 meta = { 23 + broken = (stdenv.isLinux && stdenv.isAarch64); 24 description = "The Ignominous Profiler"; 25 26 longDescription = ''
+2 -1
pkgs/development/tools/rbspy/default.nix
··· 1 - {rustPlatform, fetchFromGitHub, lib}: 2 rustPlatform.buildRustPackage rec { 3 pname = "rbspy"; 4 version = "0.11.1"; ··· 14 doCheck = true; 15 16 meta = with lib; { 17 homepage = "https://rbspy.github.io/"; 18 description = '' 19 A Sampling CPU Profiler for Ruby.
··· 1 + { stdenv, rustPlatform, fetchFromGitHub, lib}: 2 rustPlatform.buildRustPackage rec { 3 pname = "rbspy"; 4 version = "0.11.1"; ··· 14 doCheck = true; 15 16 meta = with lib; { 17 + broken = (stdenv.isLinux && stdenv.isAarch64); 18 homepage = "https://rbspy.github.io/"; 19 description = '' 20 A Sampling CPU Profiler for Ruby.
+1
pkgs/development/web/kcgi/default.nix
··· 23 installFlags = [ "DESTDIR=$(out)" ]; 24 25 meta = with lib; { 26 homepage = "https://kristaps.bsd.lv/kcgi"; 27 description = "Minimal CGI and FastCGI library for C/C++"; 28 license = licenses.isc;
··· 23 installFlags = [ "DESTDIR=$(out)" ]; 24 25 meta = with lib; { 26 + broken = (stdenv.isLinux && stdenv.isAarch64); 27 homepage = "https://kristaps.bsd.lv/kcgi"; 28 description = "Minimal CGI and FastCGI library for C/C++"; 29 license = licenses.isc;