2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2015-02-16 18:56:15 -05:00
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-02-08 20:04:46 +00:00
|
|
|
name = "mawk-1.3.4-20200120";
|
2015-02-16 18:56:15 -05:00
|
|
|
|
|
|
|
|
src = fetchurl {
|
2017-11-04 12:05:42 +01:00
|
|
|
urls = [
|
2018-01-02 12:15:48 -06:00
|
|
|
"ftp://ftp.invisible-island.net/mawk/${name}.tgz"
|
2017-11-04 12:05:42 +01:00
|
|
|
"https://invisible-mirror.net/archives/mawk/${name}.tgz"
|
|
|
|
|
];
|
2020-02-08 20:04:46 +00:00
|
|
|
sha256 = "0dw2icf8bnqd9y0clfd9pkcxz4b2phdihwci13z914mf3wgcvm3z";
|
2015-02-16 18:56:15 -05:00
|
|
|
};
|
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-08-02 20:50:55 +03:00
|
|
|
description = "Interpreter for the AWK Programming Language";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://invisible-island.net/mawk/mawk.html";
|
2016-08-02 20:50:55 +03:00
|
|
|
license = licenses.gpl2;
|
|
|
|
|
maintainers = with maintainers; [ ehmry ];
|
|
|
|
|
platforms = with platforms; unix;
|
|
|
|
|
};
|
|
|
|
|
}
|