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