20 lines
516 B
Nix
20 lines
516 B
Nix
|
args: with args;
|
||
|
rec {
|
||
|
name = "texlive-extra-2007";
|
||
|
src = fetchurl {
|
||
|
url = ftp://ftp.ru.debian.org/debian/pool/main/t/texlive-extra/texlive-extra_2007.dfsg.1.orig.tar.gz;
|
||
|
sha256 = "1440495dcsrwhnz1p1prs4rf84ca0v7fjwg7sdw7isnprnpiq7w5";
|
||
|
};
|
||
|
|
||
|
buildInputs = [texLive];
|
||
|
phaseNames = ["doCopy"];
|
||
|
doCopy = FullDepEntry (''
|
||
|
ensureDir $out/share
|
||
|
cp -r texmf* $out/share/
|
||
|
'') ["minInit" "doUnpack" "defEnsureDir" "addInputs"];
|
||
|
|
||
|
meta = {
|
||
|
description = "Extra components for TeXLive";
|
||
|
};
|
||
|
}
|