d5ec705667
and automake. Copying the files in $libtool/share/aclocal to $autoconf/share/aclocal does not work (and causes collisions when installing the tools in the user environment). The solution seems to be to install the three distributions in one single $out directory, i.e., consider them as one package. svn path=/nixpkgs/trunk/; revision=597
14 lines
297 B
Nix
14 lines
297 B
Nix
{stdenv, fetchurl, m4, perl}:
|
|
derivation {
|
|
name = "libtool-1.5";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://ftp.gnu.org/gnu/libtool/libtool-1.5.tar.gz;
|
|
md5 = "0e1844f25e2ad74c3715b5776d017545";
|
|
};
|
|
stdenv = stdenv;
|
|
m4 = m4;
|
|
perl = perl;
|
|
}
|