summary refs log tree commit diff
path: root/pkgs/tools/typesetting/tex/texlive/context.nix
blob: 2cc62c3340947eb92a646afa223106f1db760843 (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
25
args @ { texLive, ... }: with args;
rec {
  name = "context-2014.05.21";
  src = fetchurl {
    url = mirror://debian/pool/main/c/context/context_2014.05.21.20140528.orig.tar.gz;
    sha256 = "1d744xrsjyl52x2xbh87k5ad826mzz8yqmhdznrmqrhk3qpjkzic";
  };

  buildInputs = [texLive];
  phaseNames = ["doCopy"];
  doCopy = fullDepEntry (''
    mkdir -p $out/share/

    mkdir -p $out/texmf-dist
    cp -r * $out/texmf-dist

    ln -s $out/texmf* $out/share/
  '') ["minInit" "doUnpack" "defEnsureDir" "addInputs"];

  meta = {
    description = "ConTEXt TeX wrapper";
  };

}