Commit 96e42daf authored by Alexis Hildebrandt's avatar Alexis Hildebrandt Committed by Anderson Torres
Browse files

nawk: 20230909 -> 20230911

parent 48ebccdd
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -8,13 +8,13 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "nawk";
  version = "20230909";
  version = "20230911";

  src = fetchFromGitHub {
    owner = "onetrueawk";
    repo = "awk";
    rev = finalAttrs.version;
    hash = "sha256-sBJ+ToFkhU5Ei84nqzbS0bUbsa+60iLSz2oeV5+PXEk=";
    rev = "2ndEdition";
    hash = "sha256-9SxeYsTFrsJ+Cg43QjQihi2Ij0qdJvTnyGGhUHJHjuU=";
  };

  depsBuildBuild = [ buildPackages.stdenv.cc ];
@@ -43,9 +43,9 @@ stdenv.mkDerivation (finalAttrs: {
    homepage = "https://github.com/onetrueawk/awk";
    description = "The one, true implementation of AWK";
    longDescription = ''
      This is the version of awk described in "The AWK Programming Language", by
      Al Aho, Brian Kernighan, and Peter Weinberger (Addison-Wesley, 1988, ISBN
      0-201-07981-X).
      This is the version of awk described in "The AWK Programming Language",
      Second Edition, by Al Aho, Brian Kernighan, and Peter Weinberger
      (Addison-Wesley, 2023, ISBN 0-13-826972-6).
    '';
    changelog = "https://github.com/onetrueawk/awk/blob/${finalAttrs.src.rev}/ChangeLog";
    license = lib.licenses.mit;