* [PATCH] gnu: Add jack-keyboard.
@ 2016-10-13 5:58 Ricardo Wurmus
2016-10-13 16:17 ` Kei Kebreau
0 siblings, 1 reply; 3+ messages in thread
From: Ricardo Wurmus @ 2016-10-13 5:58 UTC (permalink / raw)
To: guix-devel
* 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")
--
2.10.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] gnu: Add jack-keyboard.
2016-10-13 5:58 [PATCH] gnu: Add jack-keyboard Ricardo Wurmus
@ 2016-10-13 16:17 ` Kei Kebreau
2016-10-13 21:17 ` Ricardo Wurmus
0 siblings, 1 reply; 3+ messages in thread
From: Kei Kebreau @ 2016-10-13 16:17 UTC (permalink / raw)
To: Ricardo Wurmus; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1614 bytes --]
Ricardo Wurmus <rekado@elephly.net> 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!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] gnu: Add jack-keyboard.
2016-10-13 16:17 ` Kei Kebreau
@ 2016-10-13 21:17 ` Ricardo Wurmus
0 siblings, 0 replies; 3+ messages in thread
From: Ricardo Wurmus @ 2016-10-13 21:17 UTC (permalink / raw)
To: Kei Kebreau; +Cc: guix-devel
Kei Kebreau <kei@openmailbox.org> writes:
> Ricardo Wurmus <rekado@elephly.net> 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
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-10-13 21:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-13 5:58 [PATCH] gnu: Add jack-keyboard Ricardo Wurmus
2016-10-13 16:17 ` Kei Kebreau
2016-10-13 21:17 ` Ricardo Wurmus
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).