mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
* Add Aangifte 2010.
svn path=/nixpkgs/trunk/; revision=26473
This commit is contained in:
parent
3a75769c51
commit
9d2f691ee5
2 changed files with 39 additions and 0 deletions
37
pkgs/applications/taxes/aangifte-2010/default.nix
Normal file
37
pkgs/applications/taxes/aangifte-2010/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ stdenv, fetchurl, makeWrapper, xdg_utils, libX11, libXext, libSM }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "aangifte2010-1";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://download.belastingdienst.nl/belastingdienst/apps/linux/ib2010_linux.tar.gz;
|
||||
sha256 = "15mingjyqjvy4k6ws6qlhaaw8dj7336b54zg7mj70ig7jskjkz5h";
|
||||
};
|
||||
|
||||
dontStrip = true;
|
||||
dontPatchELF = true;
|
||||
|
||||
buildInputs = [ makeWrapper ];
|
||||
|
||||
buildPhase =
|
||||
''
|
||||
for i in bin/*; do
|
||||
patchelf \
|
||||
--set-interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" \
|
||||
--set-rpath ${stdenv.lib.makeLibraryPath [ libX11 libXext libSM ]}:$(cat $NIX_GCC/nix-support/orig-gcc)/lib \
|
||||
$i
|
||||
done
|
||||
'';
|
||||
|
||||
installPhase =
|
||||
''
|
||||
ensureDir $out
|
||||
cp -prvd * $out/
|
||||
wrapProgram $out/bin/ib2010ux --prefix PATH : ${xdg_utils}/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Elektronische aangifte IB 2010 (Dutch Tax Return Program)";
|
||||
url = http://www.belastingdienst.nl/particulier/aangifte2009/download/;
|
||||
};
|
||||
}
|
|
@ -5607,6 +5607,8 @@ let
|
|||
|
||||
aangifte2009 = callPackage_i686 ../applications/taxes/aangifte-2009 { };
|
||||
|
||||
aangifte2010 = callPackage_i686 ../applications/taxes/aangifte-2010 { };
|
||||
|
||||
abcde = callPackage ../applications/audio/abcde { };
|
||||
|
||||
abiword = callPackage ../applications/office/abiword {
|
||||
|
|
Loading…
Reference in a new issue