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