summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorSander van der Burg <s.vanderburg@tudelft.nl>2010-02-03 16:12:19 +0000
committerSander van der Burg <s.vanderburg@tudelft.nl>2010-02-03 16:12:19 +0000
commitd26683f5a98e95a41a3ebf332b7940094c852af1 (patch)
tree8e3b61fe4b062b5baa8ca5c90b0ffd0226e4b976 /pkgs/development/libraries
parenta617a7c2394078f10364e95fcbc3e0ee8926e0d6 (diff)
downloadnixpkgs-d26683f5a98e95a41a3ebf332b7940094c852af1.tar
nixpkgs-d26683f5a98e95a41a3ebf332b7940094c852af1.tar.gz
nixpkgs-d26683f5a98e95a41a3ebf332b7940094c852af1.tar.bz2
nixpkgs-d26683f5a98e95a41a3ebf332b7940094c852af1.tar.lz
nixpkgs-d26683f5a98e95a41a3ebf332b7940094c852af1.tar.xz
nixpkgs-d26683f5a98e95a41a3ebf332b7940094c852af1.tar.zst
nixpkgs-d26683f5a98e95a41a3ebf332b7940094c852af1.zip
Fixed compilation for GLib on FreeBSD
svn path=/nixpkgs/branches/stdenv-updates/; revision=19790
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/glib/2.22.x.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/glib/2.22.x.nix b/pkgs/development/libraries/glib/2.22.x.nix
index eaf6a56dade..e6af08cae0e 100644
--- a/pkgs/development/libraries/glib/2.22.x.nix
+++ b/pkgs/development/libraries/glib/2.22.x.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, gettext, perl }:
+{ stdenv, fetchurl, pkgconfig, gettext, perl, libiconv ? null}:
 
 stdenv.mkDerivation rec {
   name = "glib-2.22.4";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "055dv2hymbyzwpcd39r97x747vsvlkyywa826zr75dzambw6n7qd";
   };
 
-  buildInputs = [pkgconfig gettext perl];
+  buildInputs = [pkgconfig gettext perl libiconv];
 
   # The nbd package depends on a static version of this library; hence
   # the default configure flag --disable-static is switched off.