lol
1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "mawk-1.3.4-20141206";
5
6 src = fetchurl {
7 url = "ftp://invisible-island.net/mawk/${name}.tgz";
8 sha256 = "1j49ffl8gpfaq99hkylf3fjiygq74w1kpfp8f52xbpx57vn9587g";
9 };
10
11 meta = with stdenv.lib; {
12 description = "Interpreter for the AWK Programming Language";
13 homepage = http://invisible-island.net/mawk/mawk.html;
14 license = licenses.gpl2;
15 maintainers = with maintainers; [ ehmry ];
16 platforms = with platforms; unix;
17 };
18}