2004-03-09 11:45:01 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2008-10-12 21:15:29 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pkg-config-0.23";
|
2008-03-06 17:22:24 +01:00
|
|
|
|
2004-03-09 11:45:01 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
2008-03-06 17:22:24 +01:00
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
src = fetchurl {
|
2008-10-12 21:15:29 +02:00
|
|
|
url = "http://pkgconfig.freedesktop.org/releases/${name}.tar.gz";
|
|
|
|
sha256 = "0lrvk17724mc2nzpaa0vwybarrl50r7qdnr4h6jijm50srrf1808";
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
2007-12-01 21:29:42 +01:00
|
|
|
|
2008-10-13 14:51:04 +02:00
|
|
|
patches = [
|
|
|
|
# Process Requires.private properly, see
|
|
|
|
# http://bugs.freedesktop.org/show_bug.cgi?id=4738.
|
|
|
|
./requires-private.patch
|
|
|
|
];
|
|
|
|
|
2008-03-06 17:22:24 +01:00
|
|
|
meta = {
|
|
|
|
description = "A tool that allows packages to find out information about other packages";
|
|
|
|
homepage = http://pkg-config.freedesktop.org/wiki/;
|
2008-03-07 16:40:07 +01:00
|
|
|
};
|
|
|
|
|
2008-03-06 17:22:24 +01:00
|
|
|
}
|
2008-03-07 16:40:07 +01:00
|
|
|
|