Don't build texLive in Hydra

It's way too big (texlive-core-2014 alone is > 1.5 GB).
This commit is contained in:
Eelco Dolstra 2015-06-25 17:24:59 +02:00
parent ddade52f0e
commit 7f54f99656
3 changed files with 5 additions and 2 deletions

View file

@ -1,6 +1,7 @@
args : with args;
rec {
src = fetchurl {
src = assert !config.inHydra or false; fetchurl {
url = mirror://debian/pool/main/t/texlive-bin/texlive-bin_2014.20140926.35254.orig.tar.xz;
sha256 = "1c39x059jhn5jsy6i9j3akjbkm1kmmzssy1jyi1aw20rl2vp86w3";
};
@ -147,5 +148,6 @@ rec {
license = stdenv.lib.licenses.gpl2;
maintainers = with maintainers; [ lovek323 raskin jwiegley ];
platforms = platforms.unix;
hydraPlatforms = [];
};
}

View file

@ -14703,7 +14703,7 @@ let
inherit builderDefs zlib bzip2 ncurses libpng ed lesstif ruby potrace
gd t1lib freetype icu perl expat curl xz pkgconfig zziplib texinfo
libjpeg bison python fontconfig flex poppler libpaper graphite2
makeWrapper gmp mpfr xpdf;
makeWrapper gmp mpfr xpdf config;
inherit (xlibs) libXaw libX11 xproto libXt libXpm
libXmu libXext xextproto libSM libICE;
ghostscript = ghostscriptX;

View file

@ -7,6 +7,7 @@ rec {
# Ensure that we don't build packages marked as unfree.
allPackages = args: packageSet (args // {
config.allowUnfree = false;
config.inHydra = true;
});
pkgs = pkgsFor "x86_64-linux";