2004-03-09 10:45:01 +00:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2008-10-12 20:15:29 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-01-21 00:47:03 +00:00
|
|
|
name = "pkg-config-0.26";
|
2008-03-06 16:22:24 +00:00
|
|
|
|
2004-03-09 10:45:01 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
2008-03-06 16:22:24 +00:00
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
src = fetchurl {
|
2008-10-12 20:15:29 +01:00
|
|
|
url = "http://pkgconfig.freedesktop.org/releases/${name}.tar.gz";
|
2012-01-21 00:47:03 +00:00
|
|
|
sha256 = "1by86fjr5i6l7l428bdk4axcls32bcb598g5wjrhz4vwg5m97hcl";
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
2007-12-01 20:29:42 +00:00
|
|
|
|
2008-10-13 13:51:04 +01:00
|
|
|
patches = [
|
|
|
|
# Process Requires.private properly, see
|
|
|
|
# http://bugs.freedesktop.org/show_bug.cgi?id=4738.
|
|
|
|
./requires-private.patch
|
|
|
|
];
|
|
|
|
|
2008-03-06 16:22:24 +00: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 15:40:07 +00:00
|
|
|
};
|
|
|
|
|
2008-03-06 16:22:24 +00:00
|
|
|
}
|
2008-03-07 15:40:07 +00:00
|
|
|
|