depot/third_party/nixpkgs/pkgs/tools/text/mawk/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
592 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "mawk-1.3.4-20200120";
src = fetchurl {
urls = [
"ftp://ftp.invisible-island.net/mawk/${name}.tgz"
"https://invisible-mirror.net/archives/mawk/${name}.tgz"
];
sha256 = "0dw2icf8bnqd9y0clfd9pkcxz4b2phdihwci13z914mf3wgcvm3z";
};
meta = with stdenv.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;
};
}