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
15 lines
362 B
Nix
15 lines
362 B
Nix
{stdenv, fetchsvn, autoconf, automake, libtool, which, aterm, sdf}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "strategoxt-0.9.4-4792";
|
|
|
|
builder = ./svnbuilder.sh;
|
|
src = fetchsvn {
|
|
url = https://svn.cs.uu.nl:12443/repos/StrategoXT/trunk/StrategoXT;
|
|
rev = "4792";
|
|
};
|
|
|
|
buildInputs = [autoconf automake libtool which aterm sdf];
|
|
inherit aterm sdf libtool;
|
|
}
|