1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/tools/misc/pkgconfig/default.nix
Lluís Batlle i Rossell 9ed137c45b Picking in pkgconfig the latest config.guess, as it does not know
mips64el-linux 3.2.0.

svn path=/nixpkgs/trunk/; revision=31754
2012-01-21 01:29:17 +00:00

30 lines
761 B
Nix

{stdenv, fetchurl, automake}:
stdenv.mkDerivation (rec {
name = "pkg-config-0.23";
setupHook = ./setup-hook.sh;
src = fetchurl {
url = "http://pkgconfig.freedesktop.org/releases/${name}.tar.gz";
sha256 = "0lrvk17724mc2nzpaa0vwybarrl50r7qdnr4h6jijm50srrf1808";
};
patches = [
# Process Requires.private properly, see
# http://bugs.freedesktop.org/show_bug.cgi?id=4738.
./requires-private.patch
];
meta = {
description = "A tool that allows packages to find out information about other packages";
homepage = http://pkg-config.freedesktop.org/wiki/;
};
} // (if stdenv.system == "mips64el-linux" then
{
preConfigure = ''
cp -v ${automake}/share/automake*/config.{sub,guess} .
'';
} else {}))