nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 17.09 18 lines 507 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "mawk-1.3.4-20161120"; 5 6 src = fetchurl { 7 url = "ftp://invisible-island.net/mawk/${name}.tgz"; 8 sha256 = "07hc33g2ip7463dravsiz0zwfc8vy4y4jxqvp7rz3hb896xw27in"; 9 }; 10 11 meta = with stdenv.lib; { 12 description = "Interpreter for the AWK Programming Language"; 13 homepage = http://invisible-island.net/mawk/mawk.html; 14 license = licenses.gpl2; 15 maintainers = with maintainers; [ ehmry ]; 16 platforms = with platforms; unix; 17 }; 18}