Merge #38702: Mark packages as broken (ZHF)

This commit is contained in:
Vladimír Čunát 2018-04-17 13:36:20 +02:00
commit db071c4d1d
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
36 changed files with 50 additions and 3 deletions

View File

@ -29,5 +29,6 @@ buildGoPackage rec {
homepage = "https://decred.org";
description = "Decred daemon in Go (golang)";
license = with lib.licenses; [ isc ];
broken = stdenv.isLinux; # 2018-04-10
};
}

View File

@ -38,5 +38,6 @@ buildGoPackage rec {
homepage = "https://decred.org";
description = "Decred daemon in Go (golang)";
license = with lib.licenses; [ isc ];
broken = stdenv.isLinux; # 2018-04-10
};
}

View File

@ -55,6 +55,7 @@ lib.overrideDerivation (mkDerivation rec {
description = "Ethereum virtual machine evaluator";
license = stdenv.lib.licenses.agpl3;
maintainers = [stdenv.lib.maintainers.dbrock];
broken = true; # 2018-04-10
}) (attrs: {
buildInputs = attrs.buildInputs ++ [solc];
nativeBuildInputs = attrs.nativeBuildInputs ++ [makeWrapper];

View File

@ -36,5 +36,6 @@ stdenv.mkDerivation {
license = stdenv.lib.licenses.gpl2Plus ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
broken = true; # 2018-04-11
};
}

View File

@ -36,5 +36,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.gpl2Plus ; # Some parts can be extracted and used under LGPL2+
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
broken = true; # 2018-04-10
};
}

View File

@ -61,5 +61,6 @@ in stdenv.mkDerivation {
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
broken = true; # 2018-04-11
};
}

View File

@ -29,5 +29,6 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
description = ''Constructive solid geometry package'';
broken = true; # 2018-04-11
};
}

View File

@ -80,5 +80,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl3;
maintainers = with maintainers; [ artuuge ];
platforms = platforms.linux;
broken = true; # 2018-04-10
};
}

View File

@ -131,6 +131,7 @@ let
name = "sundown";
src = "${distro_src}/pkg/sundown";
rockspec = "rocks/${name}-scm-1.rockspec";
meta.broken = true; # 2018-04-11
};
cwrap = buildLuaRocks rec {
@ -289,6 +290,7 @@ let
rev = "1e9e4f1e0bf589a0ed39f58acc185ec5e213d207";
sha256 = "1i1fpy9v6r4w3lrmz7bmf5ppq65925rv90gx39b3pykfmn0hcb9c";
};
meta.broken = true; # 2018-04-11
};
luuid = stdenv.mkDerivation rec {

View File

@ -46,5 +46,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.mpl20;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ mdaiter ];
broken = true; # 2018-04-11
};
}

View File

@ -38,5 +38,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
maintainers = with maintainers; [ codyopel viric ];
platforms = platforms.linux;
broken = true; # 2018-04-10
};
}

View File

@ -19,5 +19,6 @@ stdenv.mkDerivation {
homepage = https://linuxtv.org/;
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.gpl2;
broken = true; # 2018-04-10
};
}

View File

@ -99,5 +99,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
maintainers = with maintainers; [ the-kenny ];
platforms = platforms.linux;
broken = true; # 2018-04-11
};
}

View File

@ -164,6 +164,7 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ raskin ];
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
broken = stdenv.isi686;
#broken = stdenv.isi686;
broken = true; # 2018-04-10
};
}

View File

@ -21,5 +21,6 @@ agda.mkDerivation (self: rec {
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
maintainers = with maintainers; [ fuuzetsu ];
broken = true; # 2018-04-11
};
})

View File

@ -20,5 +20,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.magnetophon ];
platforms = stdenv.lib.platforms.linux;
broken = true; # 2018-04-10
};
}

View File

@ -26,5 +26,6 @@ stdenv.mkDerivation rec {
license = licenses.asl20;
maintainers = with maintainers; [ pxc ];
platforms = platforms.all;
broken = true; # 2018-04-10
};
}

View File

@ -45,5 +45,6 @@ stdenv.mkDerivation {
license = licenses.lgpl3;
platforms = stdenv.lib.platforms.unix;
maintainers = [ maintainers.sjmackenzie ];
broken = true; # 2018-04-11
};
}

View File

@ -158,4 +158,9 @@ $out/lib/common-lisp/query-fs"
deps = pkgs.lib.filter (x: x.name != quicklisp-to-nix-packages.buildnode-xhtml.name) x.deps;
parasites = pkgs.lib.filter (x: x!= "buildnode-test") x.parasites;
};
postmodern = x: {
overrides = y : (x.overrides y) // {
meta.broken = true; # 2018-04-10
};
};
}

View File

@ -1,11 +1,12 @@
{ lib, fetchFromGitHub, buildPythonPackage, pillow, six
, tesseract, cuneiform
, tesseract, cuneiform, isPy3k
}:
buildPythonPackage rec {
pname = "pyocr";
version = "0.4.7";
name = pname + "-" + version;
disabled = !isPy3k;
# Don't fetch from PYPI because it doesn't contain tests.
src = fetchFromGitHub {

View File

@ -35,4 +35,8 @@ buildPythonPackage rec {
pyramid sqlalchemy simplejson mozsvc cornice pyramid_hawkauth pymysql
pymysqlsa umemcache WSGIProxy requests pybrowserid
];
meta = {
broken = true; # 2018-11-04
};
}

View File

@ -33,6 +33,7 @@ buildPythonPackage rec {
homepage = http://weboob.org;
description = "Collection of applications and APIs to interact with websites without requiring the user to open a browser";
license = stdenv.lib.licenses.agpl3;
broken = true; # 2018-04-11
};
}

View File

@ -116,5 +116,6 @@ in stdenv.mkDerivation rec {
homepage = https://retdec.com;
license = licenses.mit;
maintainers = with maintainers; [ dtzWill ];
broken = withPEPatterns; # retdec-full is broken, 2018-04-11
};
}

View File

@ -25,5 +25,6 @@ stdenv.mkDerivation rec {
description = "A universal code generator";
platforms = platforms.unix;
maintainers = [ maintainers.moosingin3space ];
broken = stdenv.isLinux; # 2018-04-10
};
}

View File

@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
homepage = https://sourceforge.net/projects/avarice/files/avarice/;
maintainers = [ stdenv.lib.maintainers.smironov ];
platforms = stdenv.lib.platforms.linux;
broken = true; # 2018-04-10
};
}

View File

@ -13,4 +13,5 @@ mkDerivation {
executableHaskellDepends = [ base bytestring network ];
description = "accepts TCP connections and echoes the client's IP address back to it";
license = stdenv.lib.licenses.lgpl3;
broken = true; # 2018-04-10
}

View File

@ -57,5 +57,6 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ grahamc ];
broken = true; # 2018-04-11
};
}

View File

@ -24,5 +24,6 @@ stdenv.mkDerivation rec {
homepage = http://ori.scs.stanford.edu/;
license = licenses.mit;
platforms = platforms.unix;
broken = true; # 2018-04-11
};
}

View File

@ -22,5 +22,6 @@ mkDerivation rec {
maintainers = with maintainers; [ jb55 ];
license = licenses.gpl3;
platforms = with platforms; linux;
broken = true; # 2018-04-10
};
}

View File

@ -21,5 +21,6 @@ stdenv.mkDerivation rec {
homepage = http://www.gnokii.org;
maintainers = [ stdenv.lib.maintainers.raskin ];
platforms = stdenv.lib.platforms.linux;
broken = true; # 2018-04-10
};
}

View File

@ -39,5 +39,6 @@ in stdenv.mkDerivation rec {
license = licenses.gpl3;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.all;
broken = true; # 2018-04-11
};
}

View File

@ -15,5 +15,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ wkennington ];
broken = true; # 2018-04-11
};
}

View File

@ -64,5 +64,6 @@ stdenv.mkDerivation {
stdenv.lib.maintainers.matejc
];
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
broken = true; # 2018-04-11
};
}

View File

@ -35,5 +35,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.spacefrogg ];
broken = true; # 2018-04-10
};
}

View File

@ -75,5 +75,6 @@ stdenv.mkDerivation rec {
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
broken = true; # 2018-04-11
};
}

View File

@ -1036,6 +1036,7 @@ in {
homepage = https://github.com/skarra/CalDAVClientLibrary/tree/asynkdev/;
maintainers = with maintainers; [ pjones ];
broken = true; # 2018-04-11
};
};
@ -3354,6 +3355,7 @@ in {
pname = "lightblue";
version = "0.4";
name = "${pname}-${version}";
disabled = isPy3k; # build fails, 2018-04-11
src = pkgs.fetchurl {
url = "mirror://sourceforge/${pname}/${name}.tar.gz";
@ -8849,7 +8851,7 @@ in {
dynd = buildPythonPackage rec {
version = "0.7.2";
name = "dynd-${version}";
disabled = isPyPy;
disabled = isPyPy || !isPy3k; # tests fail on python2, 2018-04-11
src = pkgs.fetchFromGitHub {
owner = "libdynd";
@ -10471,6 +10473,7 @@ in {
meta = {
description = "Interface for working with block devices";
license = licenses.gpl2Plus;
broken = isPy3k; # doesn't build on python 3, 2018-04-11
};
};
@ -10533,6 +10536,7 @@ in {
license = licenses.bsd2;
platforms = platforms.all;
homepage = "http://jparyani.github.io/pycapnp/index.html";
broken = true; # 2018-04-11
};
};