From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH 4/7] gnu: Add llvm-for-extempore. Date: Wed, 14 Sep 2016 11:38:09 +0200 Message-ID: <20160914093812.28422-5-rekado@elephly.net> References: <20160914093812.28422-1-rekado@elephly.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54701) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bk6eO-0004hh-MG for guix-devel@gnu.org; Wed, 14 Sep 2016 05:38:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bk6eI-0003I0-Rf for guix-devel@gnu.org; Wed, 14 Sep 2016 05:38:39 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:21433) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bk6eI-0003Hn-Je for guix-devel@gnu.org; Wed, 14 Sep 2016 05:38:34 -0400 In-Reply-To: <20160914093812.28422-1-rekado@elephly.net> 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/llvm.scm (llvm-for-extempore): New variable. --- gnu/packages/llvm.scm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index a9eba79..b55a200 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2015 Mark H Weaver ;;; Copyright © 2015 Ludovic Courtès ;;; Copyright © 2016 Dennis Mungai +;;; Copyright © 2016 Ricardo Wurmus ;;; ;;; This file is part of GNU Guix. ;;; @@ -267,3 +268,10 @@ code analysis tools.") (define-public clang-3.5 (clang-from-llvm llvm-3.5 clang-runtime-3.5 "0846h8vn3zlc00jkmvrmy88gc6ql6014c02l4jv78fpvfigmgssg")) + +(define-public llvm-for-extempore + (package (inherit llvm-3.7) + (source + (origin + (inherit (package-source llvm-3.7)) + (patches (list (search-patch "llvm-for-extempore.patch"))))))) -- 2.10.0