summary refs log tree commit diff
path: root/pkgs/development/tools/misc/libtool/default.nix
blob: 8612c5a3f761f9ffc873a3fe688e57adf25800ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl, m4, perl}:

stdenv.mkDerivation {
  name = "libtool-1.5.20";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/libtool-1.5.20.tar.gz;
    md5 = "fc3b564700aebcb19de841c1c2d66e99";
  };
  buildInputs = [m4 perl];
}