mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
494b1d5b3c
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mawk/versions
22 lines
590 B
Nix
22 lines
590 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mawk-1.3.4-20190203";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"ftp://ftp.invisible-island.net/mawk/${name}.tgz"
|
|
"https://invisible-mirror.net/archives/mawk/${name}.tgz"
|
|
];
|
|
sha256 = "0h5qlslaj5czz4v25hqg8a6kg4c5mlkmdpxhhvpvp1ci08ab7b6s";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|