mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
Pkgconfig 0.23.
Untested! svn path=/nixpkgs/branches/stdenv-updates/; revision=13054
This commit is contained in:
parent
dbc0d399bf
commit
b43d4f87db
@ -1,25 +1,15 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pkg-config-0.22";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pkg-config-0.23";
|
||||
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = http://pkgconfig.freedesktop.org/releases/pkg-config-0.22.tar.gz;
|
||||
sha256 = "1rpb5wygmp0f8nal7y3ga4556i7hkjdslv3wdq04fj30gns621vy";
|
||||
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.
|
||||
(fetchurl {
|
||||
name = "pkgconfig-8494.patch";
|
||||
url = http://bugs.freedesktop.org/attachment.cgi?id=8494;
|
||||
sha256 = "1pcrdbb7dypg2biy0yqc7bdxak5zii8agqljdvk7j4wbyghpqzws";
|
||||
})
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "A tool that allows packages to find out information about other packages";
|
||||
homepage = http://pkg-config.freedesktop.org/wiki/;
|
||||
|
Loading…
Reference in New Issue
Block a user