* [PATCH] Add Bristol
@ 2015-12-24 12:51 Ricardo Wurmus
2015-12-24 17:05 ` Leo Famulari
0 siblings, 1 reply; 3+ messages in thread
From: Ricardo Wurmus @ 2015-12-24 12:51 UTC (permalink / raw)
To: guix-devel@gnu.org
[-- Attachment #1: Type: text/plain, Size: 57 bytes --]
Hi Guix,
here’s a patch for yet another synthesizer:
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-Bristol.patch --]
[-- Type: text/x-patch, Size: 2024 bytes --]
From 9f3d0c821132393bfd6192f7d6fd9cdc23feafff Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <rekado@elephly.net>
Date: Thu, 24 Dec 2015 13:43:32 +0100
Subject: [PATCH] gnu: Add Bristol.
* gnu/packages/music.scm (bristol): New variable.
---
gnu/packages/music.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 7d243f5..ce7e2aa 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -645,6 +645,38 @@ modification devices that brought world-wide fame to the names and products of
Laurens Hammond and Don Leslie.")
(license license:gpl2+)))
+(define-public bristol
+ (package
+ (name "bristol")
+ (version "0.60.11")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/bristol/bristol/"
+ (version-major+minor version)
+ "/bristol-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1fi2m4gmvxdi260821y09lxsimq82yv4k5bbgk3kyc3x1nyhn7vx"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("alsa-lib" ,alsa-lib)
+ ("jack" ,jack-1)
+ ("liblo" ,liblo)
+ ("libx11" ,libx11)))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (home-page "http://bristol.sourceforge.net/")
+ (synopsis "Synthesizer emulator")
+ (description
+ "Bristol is an emulation package for a number of different 'classic'
+synthesisers including additive and subtractive and a few organs. The
+application consists of the engine, which is called bristol, and its own GUI
+library called brighton that represents all the emulations. There are
+currently more than twenty different emulations; each does sound different
+although the author maintains that the quality and accuracy of each emulation
+is subjective.")
+ (license license:gpl3+)))
+
(define-public tuxguitar
(package
(name "tuxguitar")
--
2.5.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Add Bristol
2015-12-24 12:51 [PATCH] Add Bristol Ricardo Wurmus
@ 2015-12-24 17:05 ` Leo Famulari
2015-12-24 18:41 ` Ricardo Wurmus
0 siblings, 1 reply; 3+ messages in thread
From: Leo Famulari @ 2015-12-24 17:05 UTC (permalink / raw)
To: Ricardo Wurmus; +Cc: guix-devel@gnu.org
On Thu, Dec 24, 2015 at 01:51:12PM +0100, Ricardo Wurmus wrote:
> Hi Guix,
>
> here’s a patch for yet another synthesizer:
Wow! I've long felt that computers are a poor platform for musical
instruments due to issues of reproducibility, especially in live
settings... music.scm should put that concern to rest!
$ startBristol -juno
:)
LGTM!
> From 9f3d0c821132393bfd6192f7d6fd9cdc23feafff Mon Sep 17 00:00:00 2001
> From: Ricardo Wurmus <rekado@elephly.net>
> Date: Thu, 24 Dec 2015 13:43:32 +0100
> Subject: [PATCH] gnu: Add Bristol.
>
> * gnu/packages/music.scm (bristol): New variable.
> ---
> gnu/packages/music.scm | 32 ++++++++++++++++++++++++++++++++
> 1 file changed, 32 insertions(+)
>
> diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
> index 7d243f5..ce7e2aa 100644
> --- a/gnu/packages/music.scm
> +++ b/gnu/packages/music.scm
> @@ -645,6 +645,38 @@ modification devices that brought world-wide fame to the names and products of
> Laurens Hammond and Don Leslie.")
> (license license:gpl2+)))
>
> +(define-public bristol
> + (package
> + (name "bristol")
> + (version "0.60.11")
> + (source (origin
> + (method url-fetch)
> + (uri (string-append "mirror://sourceforge/bristol/bristol/"
> + (version-major+minor version)
> + "/bristol-" version ".tar.gz"))
> + (sha256
> + (base32
> + "1fi2m4gmvxdi260821y09lxsimq82yv4k5bbgk3kyc3x1nyhn7vx"))))
> + (build-system gnu-build-system)
> + (inputs
> + `(("alsa-lib" ,alsa-lib)
> + ("jack" ,jack-1)
> + ("liblo" ,liblo)
> + ("libx11" ,libx11)))
> + (native-inputs
> + `(("pkg-config" ,pkg-config)))
> + (home-page "http://bristol.sourceforge.net/")
> + (synopsis "Synthesizer emulator")
> + (description
> + "Bristol is an emulation package for a number of different 'classic'
> +synthesisers including additive and subtractive and a few organs. The
> +application consists of the engine, which is called bristol, and its own GUI
> +library called brighton that represents all the emulations. There are
> +currently more than twenty different emulations; each does sound different
> +although the author maintains that the quality and accuracy of each emulation
> +is subjective.")
> + (license license:gpl3+)))
> +
> (define-public tuxguitar
> (package
> (name "tuxguitar")
> --
> 2.5.0
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Add Bristol
2015-12-24 17:05 ` Leo Famulari
@ 2015-12-24 18:41 ` Ricardo Wurmus
0 siblings, 0 replies; 3+ messages in thread
From: Ricardo Wurmus @ 2015-12-24 18:41 UTC (permalink / raw)
To: Leo Famulari; +Cc: guix-devel@gnu.org
Leo Famulari <leo@famulari.name> writes:
> LGTM!
Pushed after changing “synthesisers” to “synthesizers”. Thanks!
~~ Ricardo
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-12-24 18:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-24 12:51 [PATCH] Add Bristol Ricardo Wurmus
2015-12-24 17:05 ` Leo Famulari
2015-12-24 18:41 ` Ricardo Wurmus
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.