nixpkgs/pkgs/tools/text/mawk/default.nix

22 lines
590 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
2020-02-08 20:04:46 +00:00
name = "mawk-1.3.4-20200120";
src = fetchurl {
2017-11-04 11:05:42 +00:00
urls = [
"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";
};
meta = with lib; {
description = "Interpreter for the AWK Programming Language";
homepage = "https://invisible-island.net/mawk/mawk.html";
license = licenses.gpl2;
maintainers = with maintainers; [ ehmry ];
platforms = with platforms; unix;
};
}