2015-10-03 13:33:13 +02:00
|
|
|
{stdenv, fetchurl, automake, libiconv, vanilla ? false }:
|
2004-03-09 11:45:01 +01:00
|
|
|
|
2017-04-01 11:06:20 +02:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2014-08-27 01:14:09 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-04-01 11:06:20 +02:00
|
|
|
name = "pkg-config-0.29.1";
|
2014-08-27 01:14:09 +02:00
|
|
|
|
2004-03-09 11:45:01 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
2014-08-27 01:14:09 +02:00
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
src = fetchurl {
|
2016-02-17 08:47:47 +01:00
|
|
|
urls = [
|
|
|
|
"https://pkgconfig.freedesktop.org/releases/${name}.tar.gz"
|
|
|
|
"http://fossies.org/linux/misc/${name}.tar.gz"
|
|
|
|
];
|
2017-04-01 11:06:20 +02:00
|
|
|
sha256 = "00dh1jn8rbppmgbhhgqhmbh3c58b0gccy39rsjdlcma50sg3rd5y";
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
2014-08-27 01:14:09 +02:00
|
|
|
# Process Requires.private properly, see
|
|
|
|
# http://bugs.freedesktop.org/show_bug.cgi?id=4738.
|
2015-10-03 14:07:34 +02:00
|
|
|
patches = optional (!vanilla) ./requires-private.patch
|
|
|
|
++ optional stdenv.isCygwin ./2.36.3-not-win32.patch;
|
|
|
|
|
2017-04-01 11:06:20 +02:00
|
|
|
preConfigure = optionalString (stdenv.system == "mips64el-linux")
|
2014-08-27 01:14:09 +02:00
|
|
|
''cp -v ${automake}/share/automake*/config.{sub,guess} .'';
|
2017-04-01 11:06:20 +02:00
|
|
|
buildInputs = optional (stdenv.isCygwin || stdenv.isDarwin || stdenv.isSunOS) libiconv;
|
2007-12-01 21:29:42 +01:00
|
|
|
|
2014-08-27 12:42:39 +02:00
|
|
|
configureFlags = [ "--with-internal-glib" ]
|
2017-04-01 11:06:20 +02:00
|
|
|
++ optional (stdenv.isSunOS) [ "--with-libiconv=gnu" "--with-system-library-path" "--with-system-include-path" "CFLAGS=-DENABLE_NLS" ];
|
2014-05-26 12:43:04 +02:00
|
|
|
|
2014-08-27 01:14:09 +02:00
|
|
|
postInstall = ''rm "$out"/bin/*-pkg-config''; # clean the duplicate file
|
2008-10-13 14:51:04 +02:00
|
|
|
|
2008-03-06 17:22:24 +01:00
|
|
|
meta = {
|
|
|
|
description = "A tool that allows packages to find out information about other packages";
|
|
|
|
homepage = http://pkg-config.freedesktop.org/wiki/;
|
2017-04-01 11:06:20 +02:00
|
|
|
platforms = platforms.all;
|
2008-03-07 16:40:07 +01:00
|
|
|
};
|
|
|
|
|
2014-08-27 01:14:09 +02:00
|
|
|
}
|
|
|
|
|