2019-02-24 12:39:19 -08:00
|
|
|
{ stdenv, fetchurl, libiconv, vanilla ? false }:
|
2004-03-09 02:45:01 -08:00
|
|
|
|
2017-04-01 02:06:20 -07:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2014-08-26 16:14:09 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-02-24 12:39:19 -08:00
|
|
|
pname = "pkg-config";
|
|
|
|
version = "0.29.2";
|
2014-08-26 16:14:09 -07:00
|
|
|
|
2003-11-06 07:24:19 -08:00
|
|
|
src = fetchurl {
|
2019-02-24 12:39:19 -08:00
|
|
|
url = "https://pkgconfig.freedesktop.org/releases/${pname}-${version}.tar.gz";
|
2017-04-05 15:08:04 -07:00
|
|
|
sha256 = "14fmwzki1rlz8bs2p810lk6jqdxsk966d8drgsjmi54cd00rrikg";
|
2003-11-06 07:24:19 -08:00
|
|
|
};
|
2019-02-24 12:39:19 -08:00
|
|
|
|
|
|
|
# Process Requires.private properly, see
|
2020-05-21 05:49:21 -07:00
|
|
|
# http://bugs.freedesktop.org/show_bug.cgi?id=4738, migrated to
|
|
|
|
# https://gitlab.freedesktop.org/pkg-config/pkg-config/issues/28
|
2015-10-03 05:07:34 -07:00
|
|
|
patches = optional (!vanilla) ./requires-private.patch
|
|
|
|
++ optional stdenv.isCygwin ./2.36.3-not-win32.patch;
|
|
|
|
|
2019-02-24 12:39:19 -08:00
|
|
|
# These three tests fail due to a (desired) behavior change from our ./requires-private.patch
|
2020-05-21 05:52:20 -07:00
|
|
|
postPatch = if vanilla then null else ''
|
2019-02-24 12:39:19 -08:00
|
|
|
rm -f check/check-requires-private check/check-gtk check/missing
|
|
|
|
'';
|
|
|
|
|
2017-04-01 02:06:20 -07:00
|
|
|
buildInputs = optional (stdenv.isCygwin || stdenv.isDarwin || stdenv.isSunOS) libiconv;
|
2007-12-01 12:29:42 -08:00
|
|
|
|
2014-08-27 03:42:39 -07:00
|
|
|
configureFlags = [ "--with-internal-glib" ]
|
2017-10-27 14:13:21 -07: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 12:39:19 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
2014-05-26 03:43:04 -07:00
|
|
|
|
2017-06-09 06:58:48 -07:00
|
|
|
postInstall = ''rm -f "$out"/bin/*-pkg-config''; # clean the duplicate file
|
2008-10-13 05:51:04 -07:00
|
|
|
|
2008-03-06 08:22:24 -08:00
|
|
|
meta = {
|
|
|
|
description = "A tool that allows packages to find out information about other packages";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://pkg-config.freedesktop.org/wiki/";
|
2017-04-01 02:06:20 -07:00
|
|
|
platforms = platforms.all;
|
2018-11-08 11:42:37 -08:00
|
|
|
license = licenses.gpl2Plus;
|
2008-03-07 07:40:07 -08:00
|
|
|
};
|
2014-08-26 16:14:09 -07:00
|
|
|
}
|