216657f62e
I've accidentially reverted setup-hooks while merging with trunk. Correcting it. svn path=/nixpkgs/branches/stdenv-updates/; revision=9824
12 lines
273 B
Nix
12 lines
273 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "pkgconfig-0.22";
|
|
setupHook = ./setup-hook.sh;
|
|
src = fetchurl {
|
|
url = http://pkgconfig.freedesktop.org/releases/pkg-config-0.22.tar.gz;
|
|
sha256 = "1rpb5wygmp0f8nal7y3ga4556i7hkjdslv3wdq04fj30gns621vy";
|
|
};
|
|
}
|
|
|