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

40 lines
1.3 KiB
Nix
Raw Normal View History

{stdenv, fetchurl, automake, libiconv, vanilla ? false }:
2014-08-27 01:14:09 +02:00
let
inherit (stdenv.lib) optional;
in
stdenv.mkDerivation rec {
2015-09-30 01:12:06 +02:00
name = "pkg-config-0.29";
2014-08-27 01:14:09 +02:00
setupHook = ./setup-hook.sh;
2014-08-27 01:14:09 +02:00
src = fetchurl {
urls = [
"https://pkgconfig.freedesktop.org/releases/${name}.tar.gz"
"http://fossies.org/linux/misc/${name}.tar.gz"
];
2015-09-30 01:12:06 +02:00
sha256 = "0sq09a39wj4cxf8l2jvkq067g08ywfma4v6nhprnf351s82pfl68";
};
2014-08-27 01:14:09 +02:00
# Process Requires.private properly, see
# http://bugs.freedesktop.org/show_bug.cgi?id=4738.
2015-10-03 14:07:34 +02:00
patches = optional (!vanilla) ./requires-private.patch
++ optional stdenv.isCygwin ./2.36.3-not-win32.patch;
2014-08-27 01:14:09 +02:00
preConfigure = stdenv.lib.optionalString (stdenv.system == "mips64el-linux")
''cp -v ${automake}/share/automake*/config.{sub,guess} .'';
buildInputs = stdenv.lib.optional (stdenv.isCygwin || stdenv.isDarwin || stdenv.isSunOS) libiconv;
configureFlags = [ "--with-internal-glib" ]
2015-11-22 23:58:10 +01:00
++ stdenv.lib.optional (stdenv.isSunOS) [ "--with-libiconv=gnu" "--with-system-library-path" "--with-system-include-path" "CFLAGS=-DENABLE_NLS" ];
2014-08-27 01:14:09 +02:00
postInstall = ''rm "$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/;
platforms = stdenv.lib.platforms.all;
};
2014-08-27 01:14:09 +02:00
}