nixpkgs/pkgs/misc/ghostscript/builder.sh

10 lines
161 B
Bash
Raw Normal View History

source $stdenv/setup
postInstall=postInstall
postInstall() {
for i in $fonts; do
(cd $out/share/ghostscript && tar xvfz $i)
done
}
genericBuild