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