Don't build texLive in Hydra
It's way too big (texlive-core-2014 alone is > 1.5 GB).
This commit is contained in:
parent
ddade52f0e
commit
7f54f99656
@ -1,6 +1,7 @@
|
|||||||
args : with args;
|
args : with args;
|
||||||
|
|
||||||
rec {
|
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;
|
url = mirror://debian/pool/main/t/texlive-bin/texlive-bin_2014.20140926.35254.orig.tar.xz;
|
||||||
sha256 = "1c39x059jhn5jsy6i9j3akjbkm1kmmzssy1jyi1aw20rl2vp86w3";
|
sha256 = "1c39x059jhn5jsy6i9j3akjbkm1kmmzssy1jyi1aw20rl2vp86w3";
|
||||||
};
|
};
|
||||||
@ -147,5 +148,6 @@ rec {
|
|||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
maintainers = with maintainers; [ lovek323 raskin jwiegley ];
|
maintainers = with maintainers; [ lovek323 raskin jwiegley ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
hydraPlatforms = [];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -14703,7 +14703,7 @@ let
|
|||||||
inherit builderDefs zlib bzip2 ncurses libpng ed lesstif ruby potrace
|
inherit builderDefs zlib bzip2 ncurses libpng ed lesstif ruby potrace
|
||||||
gd t1lib freetype icu perl expat curl xz pkgconfig zziplib texinfo
|
gd t1lib freetype icu perl expat curl xz pkgconfig zziplib texinfo
|
||||||
libjpeg bison python fontconfig flex poppler libpaper graphite2
|
libjpeg bison python fontconfig flex poppler libpaper graphite2
|
||||||
makeWrapper gmp mpfr xpdf;
|
makeWrapper gmp mpfr xpdf config;
|
||||||
inherit (xlibs) libXaw libX11 xproto libXt libXpm
|
inherit (xlibs) libXaw libX11 xproto libXt libXpm
|
||||||
libXmu libXext xextproto libSM libICE;
|
libXmu libXext xextproto libSM libICE;
|
||||||
ghostscript = ghostscriptX;
|
ghostscript = ghostscriptX;
|
||||||
|
@ -7,6 +7,7 @@ rec {
|
|||||||
# Ensure that we don't build packages marked as unfree.
|
# Ensure that we don't build packages marked as unfree.
|
||||||
allPackages = args: packageSet (args // {
|
allPackages = args: packageSet (args // {
|
||||||
config.allowUnfree = false;
|
config.allowUnfree = false;
|
||||||
|
config.inHydra = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
pkgs = pkgsFor "x86_64-linux";
|
pkgs = pkgsFor "x86_64-linux";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user