nixpkgs/pkgs/development/tools/misc/pkgconfig/default.nix

45 lines
1.4 KiB
Nix
Raw Normal View History

{stdenv, fetchurl, libiconv, vanilla ? false }:
2017-04-01 10:06:20 +01:00
with stdenv.lib;
2014-08-27 00:14:09 +01:00
stdenv.mkDerivation rec {
2017-04-05 23:08:04 +01:00
name = "pkg-config-0.29.2";
2014-08-27 00:14:09 +01:00
setupHook = ./setup-hook.sh;
2014-08-27 00:14:09 +01:00
src = fetchurl {
urls = [
"https://pkgconfig.freedesktop.org/releases/${name}.tar.gz"
"http://fossies.org/linux/misc/${name}.tar.gz"
];
2017-04-05 23:08:04 +01:00
sha256 = "14fmwzki1rlz8bs2p810lk6jqdxsk966d8drgsjmi54cd00rrikg";
};
2014-08-27 00:14:09 +01: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;
2017-04-01 10:06:20 +01:00
buildInputs = optional (stdenv.isCygwin || stdenv.isDarwin || stdenv.isSunOS) libiconv;
configureFlags = [ "--with-internal-glib" ]
++ 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"
];
doCheck = false; # fails
2017-06-09 14:58:48 +01:00
postInstall = ''rm -f "$out"/bin/*-pkg-config''; # clean the duplicate file
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;
};
2014-08-27 00:14:09 +01:00
}