about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-01-15 14:48:42 +0100
committerAlyssa Ross <hi@alyssa.is>2020-01-16 21:40:10 +0000
commitdf4ec23bc7f39d37f6b52c49732760fa9c80083b (patch)
treed32eddb1c274861ac9dc4a1d6355a80a4d7fad08
parentc8c87f62ea3c39bad47fc423817c9a21705d804d (diff)
downloadnixlib-df4ec23bc7f39d37f6b52c49732760fa9c80083b.tar
nixlib-df4ec23bc7f39d37f6b52c49732760fa9c80083b.tar.gz
nixlib-df4ec23bc7f39d37f6b52c49732760fa9c80083b.tar.bz2
nixlib-df4ec23bc7f39d37f6b52c49732760fa9c80083b.tar.lz
nixlib-df4ec23bc7f39d37f6b52c49732760fa9c80083b.tar.xz
nixlib-df4ec23bc7f39d37f6b52c49732760fa9c80083b.tar.zst
nixlib-df4ec23bc7f39d37f6b52c49732760fa9c80083b.zip
gnused: 4.7 -> 4.8
Upstream announcement:
https://lists.gnu.org/archive/html/info-gnu/2020-01/msg00002.html

For the lazy:

> * Noteworthy changes in release 4.8 (2020-01-14) [stable]
>
> ** Bug fixes
>
>   "sed -i" now creates temporary files with correct umask (limited to u=rwx).
>   Previously sed would incorrectly set umask on temporary files, resulting
>   in problems under certain fuse-like file systems.
>   [bug introduced in sed 4.2.1]
>
> ** Release
>
>   distribute gzip-compressed tarballs once again
>
> ** Improvements
>
>   a year's worth of gnulib development, including improved DFA performance

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--pkgs/tools/text/gnused/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/gnused/default.nix b/pkgs/tools/text/gnused/default.nix
index 3d73bfba6576..953be5e07d66 100644
--- a/pkgs/tools/text/gnused/default.nix
+++ b/pkgs/tools/text/gnused/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "gnused";
-  version = "4.7";
+  version = "4.8";
 
   src = fetchurl {
     url = "mirror://gnu/sed/sed-${version}.tar.xz";
-    sha256 = "0smxcx66vx29djzb542nxcynl7qnzxqa5032ibazi7x2s267d198";
+    sha256 = "0cznxw73fzv1n3nj2zsq6nf73rvsbxndp444xkpahdqvlzz0r6zp";
   };
 
   outputs = [ "out" "info" ];