summary refs log tree commit diff
path: root/pkgs/development/tools/misc/gnum4/default.nix
blob: 25d095d387a065e688869e0868651feae8dd53bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl}:
derivation {
  name = "gnum4-1.4";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/gnu/m4/m4-1.4.tar.gz;
    md5 = "9eb2dd07740b2d2f3c7adb3e8d299bda";
  };
  stdenv = stdenv;
}