summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2010-10-30 12:01:02 +0000
committerMichael Raskin <7c6f434c@mail.ru>2010-10-30 12:01:02 +0000
commit9a6c3e6fe963c8d04734afef19a56e46300cb910 (patch)
treedbb6505347c19d7758697661d920a830b2f20238 /pkgs/tools
parent9af1c42473d3fe471b2f1bfc7e07e2991f2a7ba1 (diff)
downloadnixpkgs-9a6c3e6fe963c8d04734afef19a56e46300cb910.tar
nixpkgs-9a6c3e6fe963c8d04734afef19a56e46300cb910.tar.gz
nixpkgs-9a6c3e6fe963c8d04734afef19a56e46300cb910.tar.bz2
nixpkgs-9a6c3e6fe963c8d04734afef19a56e46300cb910.tar.lz
nixpkgs-9a6c3e6fe963c8d04734afef19a56e46300cb910.tar.xz
nixpkgs-9a6c3e6fe963c8d04734afef19a56e46300cb910.tar.zst
nixpkgs-9a6c3e6fe963c8d04734afef19a56e46300cb910.zip
Nix trunk requires pkgconfig
svn path=/nixpkgs/trunk/; revision=24541
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/package-management/nix/custom.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/tools/package-management/nix/custom.nix b/pkgs/tools/package-management/nix/custom.nix
index 2c9f0bbe973..a84718e7b4a 100644
--- a/pkgs/tools/package-management/nix/custom.nix
+++ b/pkgs/tools/package-management/nix/custom.nix
@@ -11,6 +11,7 @@
 , docbook5_xsl ? null, libxslt ? null
 , docbook5 ? null, docbook_xml_dtd_43 ? null 
 , boehmgc ? null
+, pkgconfig ? null
 , configureFlags ? []
 , lib
 , enableScripts ? []
@@ -34,6 +35,7 @@ stdenv.mkDerivation {
   	++ (if w3m != null then [w3m] else [])
   	++ (if libxml2 != null then [libxml2] else [])
   	++ (if boehmgc != null then [boehmgc] else [])
+  	++ (if pkgconfig != null then [pkgconfig] else [])
   ;
 
   preConfigure =