about summary refs log tree commit diff
path: root/pkgs/tools/text/mawk/default.nix
blob: 3337fa62a289ffaace2d0a3c5f04760cc41d91d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "mawk-1.3.4-20141206";

  src = fetchurl {
    url = "ftp://invisible-island.net/mawk/${name}.tgz";
    sha256 = "1j49ffl8gpfaq99hkylf3fjiygq74w1kpfp8f52xbpx57vn9587g";
  };

  meta = with stdenv.lib;
    { description = "Interpreter for the AWK Programming Language";
      homepage = http://invisible-island.net/mawk/mawk.html;
      license = licenses.gpl2;
      maintainers = with maintainers; [ emery ];
    };
}