From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH] gnu: Add jack-keyboard. Date: Thu, 13 Oct 2016 23:17:23 +0200 Message-ID: <87inswhrto.fsf@elephly.net> References: <20161013055856.8339-1-rekado@elephly.net> <87wphcql4c.fsf@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58708) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bunNh-0005vs-AB for guix-devel@gnu.org; Thu, 13 Oct 2016 17:17:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bunNd-0007on-0b for guix-devel@gnu.org; Thu, 13 Oct 2016 17:17:36 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:21485) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bunNc-0007o1-OV for guix-devel@gnu.org; Thu, 13 Oct 2016 17:17:32 -0400 In-reply-to: <87wphcql4c.fsf@openmailbox.org> 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: Kei Kebreau Cc: guix-devel@gnu.org Kei Kebreau writes: > Ricardo Wurmus writes: > >> * gnu/packages/music.scm (jack-keyboard): New variable. >> --- >> gnu/packages/music.scm | 25 +++++++++++++++++++++++++ >> 1 file changed, 25 insertions(+) >> >> diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm >> index 7452052..9c8de9e 100644 >> --- a/gnu/packages/music.scm >> +++ b/gnu/packages/music.scm >> @@ -1521,6 +1521,31 @@ synths, microtonal capabilities, custom envelopes, effects, etc. Yoshimi >> improves on support for JACK features, such as JACK MIDI.") >> (license license:gpl2))) >> >> +(define-public jack-keyboard >> + (package >> + (name "jack-keyboard") >> + (version "2.5") >> + (source >> + (origin >> + (method url-fetch) >> + (uri (string-append "mirror://sourceforge/jack-keyboard/jack-keyboard/" >> + version "/jack-keyboard-" version ".tar.gz")) >> + (sha256 >> + (base32 >> + "0mzmg8aavybcfdlq2yd9d0vscqd6is5p6jzrgfpfm5j3xdcvh2s3")))) >> + (build-system gnu-build-system) >> + (inputs >> + `(("jack" ,jack-1) >> + ("lash" ,lash) >> + ("gtk+" ,gtk+-2))) >> + (native-inputs >> + `(("pkg-config" ,pkg-config))) >> + (home-page "http://jack-keyboard.sourceforge.net/") >> + (synopsis "Virtual MIDI keyboard") >> + (description "Jack-keyboard is a virtual MIDI keyboard, a program that >> +allows you to send JACK MIDI events (i.e. play) using your PC keyboard.") >> + (license license:bsd-2))) >> + >> (define-public cursynth >> (package >> (name "cursynth") > > Looks and works fine for me! Thanks for the review! Pushed as a9f55bf21864d91c001b96750bf231e0bb381388. ~~ Ricardo