forked from mirrors/nixpkgs
treewide: pkgs/development: mark broken for aarch64-linux
This commit is contained in:
parent
433701147a
commit
11ee22d797
|
@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
|
|||
preFixup = "rm -rf $(pwd)";
|
||||
|
||||
meta = {
|
||||
broken = stdenv.isDarwin;
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||
description = "Command-line interface to Stan";
|
||||
longDescription = ''
|
||||
Stan is a probabilistic programming language implementing full Bayesian
|
||||
|
|
|
@ -22,6 +22,7 @@ in stdenv.mkDerivation {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "A design system for interactive fiction";
|
||||
homepage = "http://inform7.com/";
|
||||
license = licenses.artistic2;
|
||||
|
|
|
@ -55,6 +55,7 @@ stdenv.mkDerivation rec {
|
|||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "ANSI Common Lisp Implementation";
|
||||
homepage = "https://common-lisp.net/project/mkcl/";
|
||||
license = licenses.lgpl2Plus;
|
||||
|
|
|
@ -48,11 +48,12 @@ stdenv.mkDerivation rec {
|
|||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
# darwin: never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/myrddin.x86_64-darwin
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||
description = "Systems language that is both powerful and fun to use";
|
||||
homepage = "https://myrlang.org/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ luc65r ];
|
||||
platforms = platforms.all;
|
||||
broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/myrddin.x86_64-darwin
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ clangStdenv, lib, fetchFromGitHub, cmake, zlib, openexr,
|
||||
{ stdenv, clangStdenv, lib, fetchFromGitHub, cmake, zlib, openexr,
|
||||
openimageio, llvm, boost165, flex, bison, partio, pugixml,
|
||||
util-linux, python3
|
||||
}:
|
||||
|
@ -38,6 +38,7 @@ in clangStdenv.mkDerivation rec {
|
|||
];
|
||||
# TODO: How important is partio? CMake doesn't seem to find it
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "Advanced shading language for production GI renderers";
|
||||
homepage = "http://opensource.imageworks.com/?p=osl";
|
||||
maintainers = with maintainers; [ hodapp ];
|
||||
|
|
|
@ -20,11 +20,12 @@ stdenv.mkDerivation rec {
|
|||
NIX_CFLAGS_COMPILE = "-fpermissive -fcommon";
|
||||
|
||||
meta = {
|
||||
# the linux 32 bit build fails.
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64) || !stdenv.is64bit;
|
||||
homepage = "http://www.dcc.fc.up.pt/~vsc/Yap/";
|
||||
description = "A ISO-compatible high-performance Prolog compiler";
|
||||
license = lib.licenses.artistic2;
|
||||
|
||||
platforms = lib.platforms.linux;
|
||||
broken = !stdenv.is64bit; # the linux 32 bit build fails.
|
||||
};
|
||||
}
|
||||
|
|
|
@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "Very small C interpreter for scripting";
|
||||
longDescription = ''
|
||||
PicoC is a very small C interpreter for scripting. It was originally
|
||||
|
|
|
@ -50,11 +50,12 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
meta = {
|
||||
# darwin: build times out
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||
description = "A simple Lisp with an integrated database";
|
||||
homepage = "https://picolisp.com/";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
broken = stdenv.isDarwin; # times out
|
||||
maintainers = with maintainers; [ raskin tohl ];
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
{ stdenv, lib, fetchFromGitHub, buildGoModule }:
|
||||
buildGoModule rec {
|
||||
pname = "starlark";
|
||||
version = "unstable-2022-03-02";
|
||||
|
@ -15,6 +15,7 @@ buildGoModule rec {
|
|||
ldflags = [ "-s" "-w" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
homepage = "https://github.com/google/starlark-go";
|
||||
description = "An interpreter for Starlark, implemented in Go";
|
||||
license = licenses.bsd3;
|
||||
|
|
|
@ -35,6 +35,7 @@ stdenv.mkDerivation {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "A very high level, goal-directed, object-oriented, general purpose applications language";
|
||||
maintainers = with maintainers; [ vrthra ];
|
||||
platforms = platforms.linux;
|
||||
|
|
|
@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [ libdrm libva ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
homepage = "https://01.org/linuxmedia";
|
||||
description = "Intel C for Media Runtime";
|
||||
longDescription = "Media GPU kernel manager for Intel G45 & HD Graphics family";
|
||||
|
|
|
@ -18,6 +18,7 @@ stdenv.mkDerivation {
|
|||
buildInputs = [ perl bsdbuild libagar libjpeg libpng openssl ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "Tests for libagar";
|
||||
homepage = "http://libagar.org/index.html";
|
||||
license = with licenses; bsd3;
|
||||
|
|
|
@ -33,6 +33,7 @@ stdenv.mkDerivation rec {
|
|||
installTargets = [ "install" "install-docs" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "library and utilities for Linux hugepages";
|
||||
maintainers = with maintainers; [ qyliss ];
|
||||
license = licenses.lgpl21Plus;
|
||||
|
|
|
@ -61,6 +61,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "Flatpak portal library";
|
||||
homepage = "https://github.com/flatpak/libportal";
|
||||
license = licenses.lgpl3Plus;
|
||||
|
|
|
@ -39,6 +39,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "An advanced calculator library";
|
||||
homepage = "http://qalculate.github.io";
|
||||
license = licenses.gpl2Plus;
|
||||
|
|
|
@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "C++ library for zkSNARKs";
|
||||
homepage = "https://github.com/scipr-lab/libsnark";
|
||||
license = licenses.mit;
|
||||
|
|
|
@ -41,11 +41,12 @@ in stdenv.mkDerivation {
|
|||
];
|
||||
|
||||
meta = with lib; {
|
||||
# darwin: never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/libtorrent-rasterbar-1_1_x.x86_64-darwin
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||
homepage = "https://libtorrent.org/";
|
||||
description = "A C++ BitTorrent implementation focusing on efficiency and scalability";
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ ];
|
||||
platforms = platforms.unix;
|
||||
broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/libtorrent-rasterbar-1_1_x.x86_64-darwin
|
||||
};
|
||||
}
|
||||
|
|
|
@ -39,6 +39,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "Library targeting Intel Architecture for specialized dense and sparse matrix operations, and deep learning primitives";
|
||||
license = licenses.bsd3;
|
||||
homepage = "https://github.com/hfp/libxsmm";
|
||||
|
|
|
@ -23,6 +23,7 @@ stdenv.mkDerivation {
|
|||
configureFlags = [ "--disable-dependency-tracking" "--disable-traces" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "C APIs to exchange datas with the NFC daemon 'Neard'";
|
||||
license = licenses.lgpl2;
|
||||
homepage = "https://01.org/linux-nfc";
|
||||
|
|
|
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||
description = "C++ interface to the Pango text rendering library";
|
||||
homepage = "https://www.pango.org/";
|
||||
license = with licenses; [ lgpl2 lgpl21 ];
|
||||
|
|
|
@ -119,6 +119,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "A toolkit for the simulation of the passage of particles through matter";
|
||||
longDescription = ''
|
||||
Geant4 is a toolkit for the simulation of the passage of particles through matter.
|
||||
|
|
|
@ -233,6 +233,7 @@ qtModule rec {
|
|||
requiredSystemFeatures = [ "big-parallel" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "A web engine based on the Chromium web browser";
|
||||
platforms = platforms.linux;
|
||||
# This build takes a long time; particularly on slow architectures
|
||||
|
|
|
@ -42,6 +42,7 @@ stdenv.mkDerivation rec {
|
|||
hardeningDisable = [ "format" ];
|
||||
|
||||
meta = {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "QtScript bindings generator";
|
||||
homepage = "https://code.qt.io/cgit/qt-labs/qtscriptgenerator.git/";
|
||||
inherit (qt4.meta) platforms;
|
||||
|
|
|
@ -10,6 +10,7 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
meta = {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "Library of Limited-memory Broyden-Fletcher-Goldfarb-Shanno (L-BFGS)";
|
||||
homepage = "http://www.chokkan.org/software/liblbfgs/";
|
||||
license = lib.licenses.mit;
|
||||
|
|
|
@ -101,6 +101,7 @@ stdenv.mkDerivation rec {
|
|||
hardeningDisable = [ "fortify" "strictoverflow"];
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
homepage = "http://www.nsnam.org";
|
||||
license = licenses.gpl3;
|
||||
description = "A discrete time event network simulator";
|
||||
|
|
|
@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "Library for multiprecision complex arithmetic with exact rounding";
|
||||
homepage = "https://github.com/VcDevel/Vc";
|
||||
license = licenses.bsd3;
|
||||
|
|
|
@ -37,6 +37,7 @@ in stdenv.mkDerivation rec {
|
|||
dontInstall = true; # already installed during buildPhase
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "Intel X86 Encoder Decoder (Intel XED)";
|
||||
homepage = "https://intelxed.github.io/";
|
||||
license = licenses.asl20;
|
||||
|
|
|
@ -28,6 +28,7 @@ rustPlatform.buildRustPackage rec {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = ''
|
||||
A build system that uses ptrace to handle dependencies automatically
|
||||
'';
|
||||
|
|
|
@ -20,6 +20,7 @@ stdenv.mkDerivation rec {
|
|||
CXXFLAGS = ["-fPIC" "-O2" "-w" "-fpermissive"];
|
||||
|
||||
meta = {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
description = "The Ignominous Profiler";
|
||||
|
||||
longDescription = ''
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{rustPlatform, fetchFromGitHub, lib}:
|
||||
{ stdenv, rustPlatform, fetchFromGitHub, lib}:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "rbspy";
|
||||
version = "0.11.1";
|
||||
|
@ -14,6 +14,7 @@ rustPlatform.buildRustPackage rec {
|
|||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
homepage = "https://rbspy.github.io/";
|
||||
description = ''
|
||||
A Sampling CPU Profiler for Ruby.
|
||||
|
|
|
@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
|
|||
installFlags = [ "DESTDIR=$(out)" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64);
|
||||
homepage = "https://kristaps.bsd.lv/kcgi";
|
||||
description = "Minimal CGI and FastCGI library for C/C++";
|
||||
license = licenses.isc;
|
||||
|
|
Loading…
Reference in a new issue