* Aangifteprogramma 2005. Still impure.

svn path=/nixpkgs/trunk/; revision=4976
This commit is contained in:
Eelco Dolstra 2006-03-03 19:25:06 +00:00
parent b06335a835
commit a5875f3c89
3 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,17 @@
source $stdenv/setup
buildPhase=buildPhase
buildPhase() {
glibc=$(cat $NIX_GCC/nix-support/orig-glibc)
# for i in bin/*; do
# patchelf --set-interpreter $glibc/lib/ld-linux.so.* $i
# done
}
installPhase=installPhase
installPhase() {
ensureDir $out
cp -prvd * $out/
}
genericBuild

View File

@ -0,0 +1,13 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "aangifte2005-1";
builder = ./builder.sh;
src = fetchurl {
url = http://download.belastingdienst.nl/belastingdienst/apps/linux/ib2005_linux.tar.gz;
md5 = "9cc709b8ad041f4b20154ff1491d0436";
};
# buildInputs = [pkgconfig gtk libpng];
}

View File

@ -2318,4 +2318,9 @@ rec {
joe = (import ../applications/editors/joe) {
inherit stdenv fetchurl;
};
aangifte2005 = import ../evil/belastingdiest {
inherit stdenv fetchurl;
};
}