nixpkgs/pkgs/tools/text/mawk/default.nix
Will Dietz 19f1fd14b3 invisible-island programs: Fix FTP URL's, use HTTPS, prefer ftp
FTP URL's should use ftp.invisible-island.net.
2018-01-02 12:31:33 -06:00

22 lines
589 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "mawk-1.3.4-20171017";
src = fetchurl {
urls = [
"ftp://ftp.invisible-island.net/mawk/${name}.tgz"
"https://invisible-mirror.net/archives/mawk/${name}.tgz"
];
sha256 = "0nwyxhipn4jx7j695lih1xggxm6cp4fjk4wbgihd33ni3rfi25yv";
};
meta = with stdenv.lib; {
description = "Interpreter for the AWK Programming Language";
homepage = http://invisible-island.net/mawk/mawk.html;
license = licenses.gpl2;
maintainers = with maintainers; [ ehmry ];
platforms = with platforms; unix;
};
}