1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 11:32:03 +00:00
nixpkgs/pkgs/development/tools/misc/pkgconfig/default.nix
Lluís Batlle i Rossell f5ddd22576 Updating pkgconfig.
svn path=/nixpkgs/branches/stdenv-updates/; revision=31752
2012-01-21 00:47:03 +00:00

26 lines
596 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "pkg-config-0.26";
setupHook = ./setup-hook.sh;
src = fetchurl {
url = "http://pkgconfig.freedesktop.org/releases/${name}.tar.gz";
sha256 = "1by86fjr5i6l7l428bdk4axcls32bcb598g5wjrhz4vwg5m97hcl";
};
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/;
};
}