2015-02-16 15:56:15 -08:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-09-27 11:27:13 -07:00
|
|
|
name = "mawk-1.3.4-20190203";
|
2015-02-16 15:56:15 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-11-04 04:05:42 -07:00
|
|
|
urls = [
|
2018-01-02 10:15:48 -08:00
|
|
|
"ftp://ftp.invisible-island.net/mawk/${name}.tgz"
|
2017-11-04 04:05:42 -07:00
|
|
|
"https://invisible-mirror.net/archives/mawk/${name}.tgz"
|
|
|
|
];
|
2019-09-27 11:27:13 -07:00
|
|
|
sha256 = "0h5qlslaj5czz4v25hqg8a6kg4c5mlkmdpxhhvpvp1ci08ab7b6s";
|
2015-02-16 15:56:15 -08:00
|
|
|
};
|
|
|
|
|
2016-08-02 10:50:55 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Interpreter for the AWK Programming Language";
|
2019-04-22 01:14:28 -07:00
|
|
|
homepage = https://invisible-island.net/mawk/mawk.html;
|
2016-08-02 10:50:55 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ ehmry ];
|
|
|
|
platforms = with platforms; unix;
|
|
|
|
};
|
|
|
|
}
|