2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2015-02-16 23:56:15 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-02-08 20:04:46 +00:00
|
|
|
name = "mawk-1.3.4-20200120";
|
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"
|
|
|
|
];
|
2020-02-08 20:04:46 +00:00
|
|
|
sha256 = "0dw2icf8bnqd9y0clfd9pkcxz4b2phdihwci13z914mf3wgcvm3z";
|
2015-02-16 23:56:15 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-08-02 17:50:55 +00:00
|
|
|
description = "Interpreter for the AWK Programming Language";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://invisible-island.net/mawk/mawk.html";
|
2016-08-02 17:50:55 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ ehmry ];
|
|
|
|
platforms = with platforms; unix;
|
|
|
|
};
|
|
|
|
}
|