lol

nawk: 20230909 -> 20230911

authored by

Alexis Hildebrandt and committed by
Anderson Torres
96e42daf 48ebccdd

+6 -6
+6 -6
pkgs/by-name/na/nawk/package.nix
··· 8 8 9 9 stdenv.mkDerivation (finalAttrs: { 10 10 pname = "nawk"; 11 - version = "20230909"; 11 + version = "20230911"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "onetrueawk"; 15 15 repo = "awk"; 16 - rev = finalAttrs.version; 17 - hash = "sha256-sBJ+ToFkhU5Ei84nqzbS0bUbsa+60iLSz2oeV5+PXEk="; 16 + rev = "2ndEdition"; 17 + hash = "sha256-9SxeYsTFrsJ+Cg43QjQihi2Ij0qdJvTnyGGhUHJHjuU="; 18 18 }; 19 19 20 20 depsBuildBuild = [ buildPackages.stdenv.cc ]; ··· 43 43 homepage = "https://github.com/onetrueawk/awk"; 44 44 description = "The one, true implementation of AWK"; 45 45 longDescription = '' 46 - This is the version of awk described in "The AWK Programming Language", by 47 - Al Aho, Brian Kernighan, and Peter Weinberger (Addison-Wesley, 1988, ISBN 48 - 0-201-07981-X). 46 + This is the version of awk described in "The AWK Programming Language", 47 + Second Edition, by Al Aho, Brian Kernighan, and Peter Weinberger 48 + (Addison-Wesley, 2023, ISBN 0-13-826972-6). 49 49 ''; 50 50 changelog = "https://github.com/onetrueawk/awk/blob/${finalAttrs.src.rev}/ChangeLog"; 51 51 license = lib.licenses.mit;