linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / text / mawk / default.nix
blobd5f228d7873070b549be9fb1185612c14d30d189
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   name = "mawk-1.3.4-20200120";
6   src = fetchurl {
7     urls = [
8       "ftp://ftp.invisible-island.net/mawk/${name}.tgz"
9       "https://invisible-mirror.net/archives/mawk/${name}.tgz"
10     ];
11     sha256 = "0dw2icf8bnqd9y0clfd9pkcxz4b2phdihwci13z914mf3wgcvm3z";
12   };
14   meta = with lib; {
15     description = "Interpreter for the AWK Programming Language";
16     homepage = "https://invisible-island.net/mawk/mawk.html";
17     license = licenses.gpl2;
18     maintainers = with maintainers; [ ehmry ];
19     platforms = with platforms; unix;
20   };