b43d4f87db
Untested! svn path=/nixpkgs/branches/stdenv-updates/; revision=13054
19 lines
446 B
Nix
19 lines
446 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pkg-config-0.23";
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
src = fetchurl {
|
|
url = "http://pkgconfig.freedesktop.org/releases/${name}.tar.gz";
|
|
sha256 = "0lrvk17724mc2nzpaa0vwybarrl50r7qdnr4h6jijm50srrf1808";
|
|
};
|
|
|
|
meta = {
|
|
description = "A tool that allows packages to find out information about other packages";
|
|
homepage = http://pkg-config.freedesktop.org/wiki/;
|
|
};
|
|
|
|
}
|
|
|