28b6fb61e6
This is done for the sake of Yosemite, which does not have gcc, and yet this change is also compatible with Linux.
41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{ stdenv, fetchurl, makeWrapper, xdg_utils, libX11, libXext, libSM }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "aangifte2013-1";
|
|
|
|
src = fetchurl {
|
|
url = http://download.belastingdienst.nl/belastingdienst/apps/linux/ib2013_linux.tar.gz;
|
|
sha256 = "05biqxz39gwln960xj31yg8s2chdn9vs0lzm4rlcwcavxy8lam1c";
|
|
};
|
|
|
|
dontStrip = true;
|
|
dontPatchELF = true;
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
buildPhase =
|
|
''
|
|
for i in bin/*; do
|
|
patchelf \
|
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath ${stdenv.lib.makeLibraryPath [ libX11 libXext libSM ]}:$(cat $NIX_CC/nix-support/orig-gcc)/lib \
|
|
$i
|
|
done
|
|
'';
|
|
|
|
installPhase =
|
|
''
|
|
mkdir -p $out
|
|
cp -prvd * $out/
|
|
wrapProgram $out/bin/ib2013ux --prefix PATH : ${xdg_utils}/bin \
|
|
--prefix LD_PRELOAD : $(cat $NIX_CC/nix-support/orig-gcc)/lib/libgcc_s.so.1
|
|
'';
|
|
|
|
meta = {
|
|
description = "Elektronische aangifte IB 2013 (Dutch Tax Return Program)";
|
|
url = http://www.belastingdienst.nl/wps/wcm/connect/bldcontentnl/themaoverstijgend/programmas_en_formulieren/aangifteprogramma_2013_linux;
|
|
license = stdenv.lib.licenses.unfree;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|