summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-01-04 20:39:54 +0100
committerPeter Simons <simons@cryp.to>2013-01-04 20:39:54 +0100
commit7505cb5f9a3e92b864f36f1f52ee63caaa8b40af (patch)
tree90aadd2fc111e6e83f55193a759cacbbf4e80846
parent796b5e3c9f0378d0e9416f27045607a3afc655cc (diff)
downloadnixpkgs-7505cb5f9a3e92b864f36f1f52ee63caaa8b40af.tar
nixpkgs-7505cb5f9a3e92b864f36f1f52ee63caaa8b40af.tar.gz
nixpkgs-7505cb5f9a3e92b864f36f1f52ee63caaa8b40af.tar.bz2
nixpkgs-7505cb5f9a3e92b864f36f1f52ee63caaa8b40af.tar.lz
nixpkgs-7505cb5f9a3e92b864f36f1f52ee63caaa8b40af.tar.xz
nixpkgs-7505cb5f9a3e92b864f36f1f52ee63caaa8b40af.tar.zst
nixpkgs-7505cb5f9a3e92b864f36f1f52ee63caaa8b40af.zip
gawk: update to 4.0.2
-rw-r--r--pkgs/tools/text/gawk/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/gawk/default.nix b/pkgs/tools/text/gawk/default.nix
index 401f5e80768..29b3936a0ba 100644
--- a/pkgs/tools/text/gawk/default.nix
+++ b/pkgs/tools/text/gawk/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, libsigsegv }:
 
 stdenv.mkDerivation rec {
-  name = "gawk-4.0.1";
+  name = "gawk-4.0.2";
 
   src = fetchurl {
     url = "mirror://gnu/gawk/${name}.tar.xz";
-    sha256 = "0iyb5qpj27qwa4h3617ymjhbc7vxvb82dlgw2vrnss40mjhbj35f";
+    sha256 = "04vd0axif762mf781pj3days6ilv2333b9zi9c50y5mma66g5q91";
   };
 
   patches = stdenv.lib.optional stdenv.isCygwin [ ./cygwin-identifiers.patch ];