mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
19 lines
507 B
Nix
19 lines
507 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mawk-1.3.4-20141206";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://invisible-island.net/mawk/${name}.tgz";
|
|
sha256 = "1j49ffl8gpfaq99hkylf3fjiygq74w1kpfp8f52xbpx57vn9587g";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|