From 37de59a3be97093953535632fe2623dd4f5fc1f9 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 24 Mar 2009 09:00:34 +0000 Subject: * Dutch tax return program for 2008. (And the government is *still* violating the LGPL...) svn path=/nixpkgs/trunk/; revision=14678 --- pkgs/applications/taxes/aangifte-2008/builder.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pkgs/applications/taxes/aangifte-2008/builder.sh (limited to 'pkgs/applications/taxes/aangifte-2008/builder.sh') diff --git a/pkgs/applications/taxes/aangifte-2008/builder.sh b/pkgs/applications/taxes/aangifte-2008/builder.sh new file mode 100644 index 000000000000..e2d2658024a4 --- /dev/null +++ b/pkgs/applications/taxes/aangifte-2008/builder.sh @@ -0,0 +1,21 @@ +source $stdenv/setup + +echo $NIX_GCC + +buildPhase=buildPhase +buildPhase() { + for i in bin/*; do + patchelf \ + --set-interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" \ + --set-rpath $libX11/lib:$libXext/lib:$libSM/lib:$(cat $NIX_GCC/nix-support/orig-gcc)/lib \ + $i + done +} + +installPhase=installPhase +installPhase() { + ensureDir $out + cp -prvd * $out/ +} + +genericBuild \ No newline at end of file -- cgit 1.4.1