summary refs log tree commit diff
path: root/pkgs/misc/tex/texlive/extra.nix
blob: 1ecec91a68565b86f237075d88935b3f0f07aae4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
args: with args;
rec {
  name = "texlive-extra-2009";
  src = fetchurl {
    url = mirror://debian/pool/main/t/texlive-extra/texlive-extra_2009.orig.tar.gz;
    sha256 = "04k48lxy76bad1270gb9k4aza2q13can2dbcf2hj0a3byls099kp";
  };

  buildInputs = [texLive];
  phaseNames = ["doCopy"];
  doCopy = fullDepEntry (''
    mkdir -p $out/share
    cp -r texmf* $out/
    ln -s $out/texmf* $out/share
  '') ["minInit" "doUnpack" "defEnsureDir" "addInputs"];

  meta = {
    description = "Extra components for TeXLive";
    maintainers = [ args.lib.maintainers.raskin ];

    # Actually, arch-independent.. 
    platforms = [] ;
  };
}