Making xfe find and load icons fine

I added more dependencies to fox, for that.
I tried to add mesa too, but it wasn't trivial for it to find it, so
I took it out.
This commit is contained in:
Lluís Batlle i Rossell
2013-05-16 23:40:26 +02:00
parent c06c636604
commit 6a4350b68f
4 changed files with 19 additions and 10 deletions
+5 -3
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, fox_1_6, pkgconfig, gettext, x11, gcc, intltool, file, libpng }:
{ stdenv, fetchurl, fox, pkgconfig, gettext, x11, gcc, intltool, file, libpng }:
let
version = "1.33";
@@ -12,9 +12,11 @@ stdenv.mkDerivation rec {
md5 = "fb089ba73add411b08a6560eeb51742d";
};
buildInputs = [ fox_1_6 pkgconfig gettext x11 gcc intltool file libpng ];
buildInputs = [ fox pkgconfig gettext x11 gcc intltool file libpng ];
doCheck = false;
preConfigure = ''
sed -i s,/usr/share/xfe,$out/share/xfe, src/xfedefs.h
'';
enableParallelBuilding = true;