817d1b27ef
adds all directories specified in `ACLOCAL_PATH' to the `aclocal' command line as `-I' flags. Also, it provides a setup hook that adds the `.../share/aclocal' directory of every build input to `ACLOCAL_PATH'. * Upgraded Libtool. * Graphviz requires the X Athena widgets, which in turn requires the X miscellaneous utilities library; added those. However it doesn't work yet since libXt is broken. svn path=/nixpkgs/trunk/; revision=888
10 lines
247 B
Nix
10 lines
247 B
Nix
{stdenv, fetchurl, m4, perl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "autoconf-2.58";
|
|
src = fetchurl {
|
|
url = ftp://ftp.nluug.nl/pub/gnu/autoconf/autoconf-2.58.tar.bz2;
|
|
md5 = "db3fa3069c6554b3505799c7e1022e2b";
|
|
};
|
|
buildInputs = [m4 perl];
|
|
}
|