From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: [PATCH] gnu: ed: Replace with 1.14.1 [fixes security issues]. Date: Thu, 12 Jan 2017 21:13:53 +0100 Message-ID: <20170112201353.29406-1-mbakke@fastmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45251) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cRll7-0008CL-51 for guix-devel@gnu.org; Thu, 12 Jan 2017 15:14:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cRll3-0003K8-Sl for guix-devel@gnu.org; Thu, 12 Jan 2017 15:14:05 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:54231) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cRll3-0003Jb-I6 for guix-devel@gnu.org; Thu, 12 Jan 2017 15:14:01 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: Marius Bakke * gnu/packages/ed.scm (ed-1.14.1): New variable. (ed)[replacement]: New field. --- gnu/packages/ed.scm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gnu/packages/ed.scm b/gnu/packages/ed.scm index 3668aac19..c51a4b82f 100644 --- a/gnu/packages/ed.scm +++ b/gnu/packages/ed.scm @@ -28,6 +28,7 @@ (define-public ed (package (name "ed") + (replacement ed-1.14.1) (version "1.13") (source (origin (method url-fetch) @@ -55,3 +56,15 @@ interactively and via shell scripts. Its method of command input allows complex tasks to be performed in an automated way. GNU ed offers several extensions over the standard utility.") (license gpl3+))) + +(define ed-1.14.1 + (package (inherit ed) + (source + (let ((version "1.14.1")) + (origin + (method url-fetch) + (uri (string-append "mirror://gnu/ed/ed-" + version ".tar.lz")) + (sha256 + (base32 + "0ajm69pma7gigddlrq2qi4dsllz9vhm8gqwpkcdagdd2yaw7xfgz"))))))) -- 2.11.0