From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Thompson, David" Subject: Re: [PATCH 6/7] gnu: Add portmidi-for-extempore. Date: Wed, 14 Sep 2016 10:25:51 -0400 Message-ID: References: <20160914093812.28422-1-rekado@elephly.net> <20160914093812.28422-7-rekado@elephly.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35999) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkB9O-0004pr-Pr for guix-devel@gnu.org; Wed, 14 Sep 2016 10:26:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bkB9L-0003yG-1c for guix-devel@gnu.org; Wed, 14 Sep 2016 10:26:57 -0400 Received: from mail-yw0-f178.google.com ([209.85.161.178]:33414) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkB9K-0003xY-UX for guix-devel@gnu.org; Wed, 14 Sep 2016 10:26:54 -0400 Received: by mail-yw0-f178.google.com with SMTP id i129so22602045ywb.0 for ; Wed, 14 Sep 2016 07:26:52 -0700 (PDT) In-Reply-To: <20160914093812.28422-7-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: Ricardo Wurmus Cc: guix-devel On Wed, Sep 14, 2016 at 5:38 AM, Ricardo Wurmus wrote: > * gnu/packages/music.scm (portmidi-for-extempore): New variable. > --- > gnu/packages/music.scm | 17 +++++++++++++++++ > 1 file changed, 17 insertions(+) > > diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm > index f294564..c62dbbc 100644 > --- a/gnu/packages/music.scm > +++ b/gnu/packages/music.scm > @@ -1081,6 +1081,23 @@ projects.") > using a system-independent interface.") > (license license:expat))) > > +(define-public portmidi-for-extempore > + (package (inherit portmidi) > + (name "portmidi-for-extempore") > + (version "217") > + (source (origin > + (method url-fetch) > + (uri (string-append "https://github.com/extemporelang/portmidi/" > + "archive/" version ".tar.gz")) > + (file-name (string-append name "-" version ".tar.gz")) > + (sha256 > + (base32 > + "0gjikwciyr8kk4y3qiv1pcq58xpgw38ql1m2gs6g0qc1s8sx4235")))) > + (build-system cmake-build-system) > + (arguments `(#:tests? #f)) ; no tests > + (native-inputs '()) Remove this line. ^ > + (home-page "https://github.com/extemporelang/portmidi/"))) > + > (define-public python-pyportmidi > (package > (name "python-pyportmidi") > -- > 2.10.0 LGTM otherwise. - Dave