From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 01/68] gnu: Add flex-2.6.1. Date: Sat, 29 Oct 2016 20:04:12 +0200 Message-ID: <20161029180519.6061-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53189) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c0Y0f-0001Ja-My for guix-devel@gnu.org; Sat, 29 Oct 2016 14:05:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c0Y0a-0003Kq-DD for guix-devel@gnu.org; Sat, 29 Oct 2016 14:05:37 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:42182) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1c0Y0a-0003Kc-8v for guix-devel@gnu.org; Sat, 29 Oct 2016 14:05:32 -0400 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 * gnu/packages/flex.scm (flex-2.6.1): New variable. --- gnu/packages/flex.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/gnu/packages/flex.scm b/gnu/packages/flex.scm index 20aff19..7b59085 100644 --- a/gnu/packages/flex.scm +++ b/gnu/packages/flex.scm @@ -78,3 +78,17 @@ regular expressions for each rule. Whenever it finds a match, it executes the corresponding C code.") (license (non-copyleft "file://COPYING" "See COPYING in the distribution.")))) + +(define-public flex-2.6.1 + (package + (inherit flex) + (version "2.6.1") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/westes/flex" + "/releases/download/v" version "/" + "flex-" version ".tar.gz")) + (sha256 + (base32 + "0fy14c35yz2m1n1m4f02by3501fn0cca37zn7jp8lpp4b3kgjhrw")))))) -- 2.9.0