summary refs log tree commit diff
path: root/pkgs/misc/ghostscript/builder.sh
blob: bd5a302fcb8ea93a8f7f5ef0050e6980b67760c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
. $stdenv/setup

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

genericBuild