3
0
Fork 0
forked from mirrors/nixpkgs

Fixed dependencies for updated Xneur

svn path=/nixpkgs/trunk/; revision=13735
This commit is contained in:
Michael Raskin 2009-01-11 10:19:11 +00:00
parent cc2e747a1b
commit 46f022b4ce
2 changed files with 6 additions and 4 deletions

View file

@ -8,13 +8,15 @@ stdenv.mkDerivation {
};
buildInputs = [libX11 pkgconfig pcre GStreamer glib libxml2 aspell
libXpm];
libXpm imlib2 xosd libXt libXext];
inherit aspell;
inherit aspell imlib2 xosd;
preConfigure = ''
sed -e 's/-Werror//' -i configure
sed -e 's/for aspell_dir in/for aspell_dir in $aspell /' -i configure
sed -e 's/for imlib2_dir in/for imlib2_dir in $imlib2 /' -i configure
sed -e 's/for xosd_dir in/for xosd_dir in $xosd /' -i configure
'';
meta = {

View file

@ -8245,9 +8245,9 @@ let
};
xneur = import ../applications/misc/xneur {
inherit fetchurl stdenv pkgconfig pcre libxml2 aspell;
inherit fetchurl stdenv pkgconfig pcre libxml2 aspell imlib2 xosd;
GStreamer=gst_all.gstreamer;
inherit (xlibs) libX11 libXpm;
inherit (xlibs) libX11 libXpm libXt libXext;
inherit (gtkLibs) glib;
};