2004-03-09 11:45:01 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2008-03-07 16:40:07 +01:00
|
|
|
name = "pkg-config-0.22";
|
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-03-07 16:40:07 +01:00
|
|
|
url = http://pkgconfig.freedesktop.org/releases/pkg-config-0.22.tar.gz;
|
|
|
|
sha256 = "1rpb5wygmp0f8nal7y3ga4556i7hkjdslv3wdq04fj30gns621vy";
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
2007-12-01 21:29:42 +01:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
# Process Requires.private properly, see
|
|
|
|
# http://bugs.freedesktop.org/show_bug.cgi?id=4738.
|
2008-03-07 16:40:07 +01:00
|
|
|
(fetchurl {
|
|
|
|
name = "pkgconfig-8494.patch";
|
|
|
|
url = http://bugs.freedesktop.org/attachment.cgi?id=8494;
|
|
|
|
sha256 = "1pcrdbb7dypg2biy0yqc7bdxak5zii8agqljdvk7j4wbyghpqzws";
|
|
|
|
})
|
2007-12-01 21:29:42 +01:00
|
|
|
];
|
2007-12-01 21:05:26 +01:00
|
|
|
|
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
|
|
|
|