719217d77a
* added lazylist and polytable (both tetex packages) * added lhs2tex ebuild, depending on the two above svn path=/nixpkgs/trunk/; revision=4609
19 lines
253 B
Bash
19 lines
253 B
Bash
source $stdenv/setup
|
|
|
|
phases="installPhase"
|
|
dontMakeInstall="yes"
|
|
prefix="$out"
|
|
|
|
preInstall() {
|
|
|
|
ensureDir "$out/share/texmf-nix/tex/latex/lazylist"
|
|
cp lazylist.sty "$out/share/texmf-nix/tex/latex/lazylist"
|
|
|
|
}
|
|
|
|
preInstall=preInstall
|
|
|
|
genericBuild
|
|
|
|
|