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

35 lines
1 KiB
Nix
Raw Normal View History

2014-10-23 22:45:01 +02:00
{stdenv, fetchurl, automake, libiconv, vanilla ? false}:
stdenv.mkDerivation (rec {
2015-09-30 01:12:06 +02:00
name = "pkg-config-0.29";
setupHook = ./setup-hook.sh;
src = fetchurl {
url = "http://pkgconfig.freedesktop.org/releases/${name}.tar.gz";
2015-09-30 01:12:06 +02:00
sha256 = "0sq09a39wj4cxf8l2jvkq067g08ywfma4v6nhprnf351s82pfl68";
};
2015-06-19 21:56:20 +02:00
buildInputs = stdenv.lib.optional (stdenv.isCygwin || stdenv.isDarwin) libiconv;
2014-10-23 22:45:01 +02:00
configureFlags = [ "--with-internal-glib" ];
2014-10-23 22:45:01 +02:00
patches = (if vanilla then [] else [
# Process Requires.private properly, see
# http://bugs.freedesktop.org/show_bug.cgi?id=4738.
./requires-private.patch
2014-10-23 22:45:01 +02:00
]) ++ stdenv.lib.optional stdenv.isCygwin ./2.36.3-not-win32.patch;
meta = {
description = "A tool that allows packages to find out information about other packages";
homepage = http://pkg-config.freedesktop.org/wiki/;
platforms = stdenv.lib.platforms.all;
};
} // (if stdenv.system == "mips64el-linux" then
{
preConfigure = ''
cp -v ${automake}/share/automake*/config.{sub,guess} .
'';
} else {}))