3
0
Fork 0
forked from mirrors/nixpkgs

* aangifte2009 requires xdg-utils to open a browser.

svn path=/nixpkgs/trunk/; revision=20830
This commit is contained in:
Eelco Dolstra 2010-03-25 20:39:01 +00:00
parent 48e1c2df80
commit 54aefa41b4
2 changed files with 6 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, libX11, libXext, libSM }:
{ stdenv, fetchurl, makeWrapper, xdg_utils, libX11, libXext, libSM }:
stdenv.mkDerivation {
name = "aangifte2009-1";
@ -9,6 +9,9 @@ stdenv.mkDerivation {
};
dontStrip = true;
dontPatchELF = true;
buildInputs = [ makeWrapper ];
buildPhase =
''
@ -24,6 +27,7 @@ stdenv.mkDerivation {
''
ensureDir $out
cp -prvd * $out/
wrapProgram $out/bin/ib2009ux --prefix PATH : ${xdg_utils}/bin
'';
meta = {

View file

@ -6735,7 +6735,7 @@ let
};
aangifte2009 = import ../applications/taxes/aangifte-2009 {
inherit (pkgsi686Linux) stdenv fetchurl;
inherit (pkgsi686Linux) stdenv fetchurl makeWrapper xdg_utils;
inherit (pkgsi686Linux.xlibs) libX11 libXext libSM;
};