2019-02-24 20:39:19 +00:00
|
|
|
{ stdenv, fetchurl, libiconv, vanilla ? false }:
|
2004-03-09 10:45:01 +00:00
|
|
|
|
2017-04-01 10:06:20 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2014-08-27 00:14:09 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-02-24 20:39:19 +00:00
|
|
|
pname = "pkg-config";
|
|
|
|
version = "0.29.2";
|
2014-08-27 00:14:09 +01:00
|
|
|
|
2004-03-09 10:45:01 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
2014-08-27 00:14:09 +01:00
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
src = fetchurl {
|
2019-02-24 20:39:19 +00:00
|
|
|
url = "https://pkgconfig.freedesktop.org/releases/${pname}-${version}.tar.gz";
|
2017-04-05 23:08:04 +01:00
|
|
|
sha256 = "14fmwzki1rlz8bs2p810lk6jqdxsk966d8drgsjmi54cd00rrikg";
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
2019-02-24 20:39:19 +00:00
|
|
|
|
|
|
|
# Process Requires.private properly, see
|
|
|
|
# http://bugs.freedesktop.org/show_bug.cgi?id=4738.
|
2015-10-03 13:07:34 +01:00
|
|
|
patches = optional (!vanilla) ./requires-private.patch
|
|
|
|
++ optional stdenv.isCygwin ./2.36.3-not-win32.patch;
|
|
|
|
|
2019-02-24 20:39:19 +00:00
|
|
|
# These three tests fail due to a (desired) behavior change from our ./requires-private.patch
|
|
|
|
postPatch = ''
|
|
|
|
rm -f check/check-requires-private check/check-gtk check/missing
|
|
|
|
'';
|
|
|
|
|
2017-04-01 10:06:20 +01:00
|
|
|
buildInputs = optional (stdenv.isCygwin || stdenv.isDarwin || stdenv.isSunOS) libiconv;
|
2007-12-01 20:29:42 +00:00
|
|
|
|
2014-08-27 11:42:39 +01:00
|
|
|
configureFlags = [ "--with-internal-glib" ]
|
2017-10-27 22:13:21 +01:00
|
|
|
++ optional (stdenv.isSunOS) [ "--with-libiconv=gnu" "--with-system-library-path" "--with-system-include-path" "CFLAGS=-DENABLE_NLS" ]
|
|
|
|
# Can't run these tests while cross-compiling
|
|
|
|
++ optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
|
|
|
[ "glib_cv_stack_grows=no"
|
|
|
|
"glib_cv_uscore=no"
|
|
|
|
"ac_cv_func_posix_getpwuid_r=yes"
|
|
|
|
"ac_cv_func_posix_getgrgid_r=yes"
|
|
|
|
];
|
|
|
|
|
2019-02-24 20:39:19 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
2014-05-26 11:43:04 +01:00
|
|
|
|
2017-06-09 14:58:48 +01:00
|
|
|
postInstall = ''rm -f "$out"/bin/*-pkg-config''; # clean the duplicate file
|
2008-10-13 13:51:04 +01:00
|
|
|
|
2008-03-06 16:22:24 +00: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 10:06:20 +01:00
|
|
|
platforms = platforms.all;
|
2018-11-08 19:42:37 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2008-03-07 15:40:07 +00:00
|
|
|
};
|
2014-08-27 00:14:09 +01:00
|
|
|
}
|