94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
24 lines
685 B
Nix
24 lines
685 B
Nix
{ lib, stdenv, fetchurl, buildPackages }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mawk";
|
|
version = "1.3.4-20230203";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"ftp://ftp.invisible-island.net/mawk/mawk-${version}.tgz"
|
|
"https://invisible-mirror.net/archives/mawk/mawk-${version}.tgz"
|
|
];
|
|
sha256 = "sha256-bbejKsecURB60xpAfU+SxrhC3eL2inUztOe3sD6JAL4=";
|
|
};
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
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;
|
|
};
|
|
}
|