summary refs log tree commit diff
path: root/pkgs/applications/taxes/aangifte-2006/builder.sh
blob: 1b709b613bd48738c66c83e700eac64de0b638ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
source $stdenv/setup

buildPhase() {
    for i in bin/*; do
        patchelf \
            --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
            --set-rpath $libX11/lib:$libXext/lib \
            $i
    done
}

installPhase() {
    mkdir -p $out
    cp -prvd * $out/
}

genericBuild