forked from mirrors/nixpkgs
* aangifte2009 requires xdg-utils to open a browser.
svn path=/nixpkgs/trunk/; revision=20830
This commit is contained in:
parent
48e1c2df80
commit
54aefa41b4
|
@ -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 = {
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue