summary refs log tree commit diff
path: root/pkgs/development/libraries/fox
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-05-16 23:35:48 +0200
committerLluís Batlle i Rossell <viric@viric.name>2013-05-16 23:40:26 +0200
commit6a4350b68fafaf84847861d7ed08f26d5ccdb558 (patch)
tree01f648e110e90d7aa0ac2b94505511ec002ed5c4 /pkgs/development/libraries/fox
parentc06c636604892bbfcee7d61454104d2974f25fa3 (diff)
downloadnixpkgs-6a4350b68fafaf84847861d7ed08f26d5ccdb558.tar
nixpkgs-6a4350b68fafaf84847861d7ed08f26d5ccdb558.tar.gz
nixpkgs-6a4350b68fafaf84847861d7ed08f26d5ccdb558.tar.bz2
nixpkgs-6a4350b68fafaf84847861d7ed08f26d5ccdb558.tar.lz
nixpkgs-6a4350b68fafaf84847861d7ed08f26d5ccdb558.tar.xz
nixpkgs-6a4350b68fafaf84847861d7ed08f26d5ccdb558.tar.zst
nixpkgs-6a4350b68fafaf84847861d7ed08f26d5ccdb558.zip
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.
Diffstat (limited to 'pkgs/development/libraries/fox')
-rw-r--r--pkgs/development/libraries/fox/default.nix4
-rw-r--r--pkgs/development/libraries/fox/fox-1.6.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/fox/default.nix b/pkgs/development/libraries/fox/default.nix
index 76cc1d5c3d2..bfe7c68dd3e 100644
--- a/pkgs/development/libraries/fox/default.nix
+++ b/pkgs/development/libraries/fox/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, x11 }:
+{ stdenv, fetchurl, x11, libpng, libjpeg, libtiff, zlib, bzip2, libXcursor, libXrandr, libXft }:
 
 let
   version = "1.7.9";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
     md5 = "b5897e9c664967f5042e57070037ff18";
   };
 
-  buildInputs = [ x11 ];
+  buildInputs = [ x11 libpng libjpeg libtiff zlib bzip2 libXcursor libXrandr libXft ];
 
   doCheck = true;
 
diff --git a/pkgs/development/libraries/fox/fox-1.6.nix b/pkgs/development/libraries/fox/fox-1.6.nix
index e8961621cab..c0946d79e3c 100644
--- a/pkgs/development/libraries/fox/fox-1.6.nix
+++ b/pkgs/development/libraries/fox/fox-1.6.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, x11 }:
+{ stdenv, fetchurl, x11, libpng, libjpeg, libtiff, zlib, bzip2, libXcursor, libXrandr, mesa, libXft }:
 
 let
   version = "1.6.9";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
     md5 = "8ab8274237431865f57b2f5596374a65";
   };
 
-  buildInputs = [ x11 ];
+  buildInputs = [ x11 libpng libjpeg libtiff zlib bzip2 libXcursor libXrandr libXft ];
 
   doCheck = true;