From 529e2b281a9bcc707b27f911bc1490bebebe4f53 Mon Sep 17 00:00:00 2001 From: Edward O'Callaghan Date: Thu, 29 Jan 2015 22:32:23 +1100 Subject: [PATCH] gnupatch: update from 2.7.1 to 2.7.3 (close #6048) Potentially fixes CVE-2015-1196. Signed-off-by: Edward O'Callaghan --- pkgs/tools/text/gnupatch/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/text/gnupatch/default.nix b/pkgs/tools/text/gnupatch/default.nix index 7b38227cfcc..138126cf4aa 100644 --- a/pkgs/tools/text/gnupatch/default.nix +++ b/pkgs/tools/text/gnupatch/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, ed }: stdenv.mkDerivation rec { - name = "patch-2.7.1"; + name = "patch-2.7.3"; src = fetchurl { - url = "mirror://gnu/patch/${name}.tar.gz"; - sha256 = "1m9r83b5c154xnxbvgjg4lfff58xjapanj6dmmivqx1liik2hpy0"; + url = "mirror://gnu/patch/${name}.tar.bz2"; + sha256 = "0za8wh4lgjk8k9s0rd7y5gjid99126myrh3nkifpi4ny6rkj9xh2"; }; buildInputs = stdenv.lib.optional doCheck ed;