unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 1/2] gnu: Add drumkv1.
@ 2016-11-19 10:27 Ricardo Wurmus
  2016-11-19 10:27 ` [PATCH 2/2] gnu: Add samplv1 Ricardo Wurmus
  2016-11-19 12:04 ` [PATCH 1/2] gnu: Add drumkv1 宋文武
  0 siblings, 2 replies; 4+ messages in thread
From: Ricardo Wurmus @ 2016-11-19 10:27 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/music.scm (drumkv1): New variable.
---
 gnu/packages/music.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 12233bf..5e882b2 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -909,6 +909,40 @@ users to select LV2 plugins and run them with jalv.")
 oscillators and stereo effects.")
     (license license:gpl2+)))
 
+(define-public drumkv1
+  (package
+    (name "drumkv1")
+    (version "0.8.0")
+    (source (origin
+              (method url-fetch)
+              (uri
+               (string-append "mirror://sourceforge/drumkv1/drumkv1/" version
+                              "/drumkv1-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1n2kd468kn71yp2asmamprvblmdlvh0zd8lsh3598dwi4b7aa3ga"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f ; There are no tests.
+       #:configure-flags
+       '("CXXFLAGS=-std=gnu++11")))
+    (inputs
+     `(("jack" ,jack-1)
+       ("lv2" ,lv2)
+       ("libsndfile" ,libsndfile)
+       ("alsa-lib" ,alsa-lib)
+       ("liblo" ,liblo)
+       ("qtbase" ,qtbase)
+       ("qttools" ,qttools)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://drumkv1.sourceforge.net")
+    (synopsis "Drum-kit sampler synthesizer with stereo effects")
+    (description
+     "Drumkv1 is an old-school drum-kit sampler synthesizer with stereo
+effects.")
+    (license license:gpl2+)))
+
 (define-public amsynth
   (package
     (name "amsynth")
-- 
2.10.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] gnu: Add samplv1.
  2016-11-19 10:27 [PATCH 1/2] gnu: Add drumkv1 Ricardo Wurmus
@ 2016-11-19 10:27 ` Ricardo Wurmus
  2016-11-19 12:04 ` [PATCH 1/2] gnu: Add drumkv1 宋文武
  1 sibling, 0 replies; 4+ messages in thread
From: Ricardo Wurmus @ 2016-11-19 10:27 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/music.scm (samplv1): New variable.
---
 gnu/packages/music.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 5e882b2..c81d9a0 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -943,6 +943,40 @@ oscillators and stereo effects.")
 effects.")
     (license license:gpl2+)))
 
+(define-public samplv1
+  (package
+    (name "samplv1")
+    (version "0.8.0")
+    (source (origin
+              (method url-fetch)
+              (uri
+               (string-append "mirror://sourceforge/samplv1/samplv1/" version
+                              "/samplv1-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0j3hkmd9q0bw9b7nk9cssqywlrishkd1n790a9vq6gh3pdc5sf3r"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f ; There are no tests.
+       #:configure-flags
+       '("CXXFLAGS=-std=gnu++11")))
+    (inputs
+     `(("jack" ,jack-1)
+       ("lv2" ,lv2)
+       ("libsndfile" ,libsndfile)
+       ("alsa-lib" ,alsa-lib)
+       ("liblo" ,liblo)
+       ("qtbase" ,qtbase)
+       ("qttools" ,qttools)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://samplv1.sourceforge.net")
+    (synopsis "Polyphonic sampler synthesizer with stereo effects")
+    (description
+     "Samplv1 is an old-school polyphonic sampler synthesizer with stereo
+effects.")
+    (license license:gpl2+)))
+
 (define-public amsynth
   (package
     (name "amsynth")
-- 
2.10.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] gnu: Add drumkv1.
  2016-11-19 10:27 [PATCH 1/2] gnu: Add drumkv1 Ricardo Wurmus
  2016-11-19 10:27 ` [PATCH 2/2] gnu: Add samplv1 Ricardo Wurmus
@ 2016-11-19 12:04 ` 宋文武
  2016-11-19 16:28   ` Ricardo Wurmus
  1 sibling, 1 reply; 4+ messages in thread
From: 宋文武 @ 2016-11-19 12:04 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

Ricardo Wurmus <rekado@elephly.net> writes:

> * gnu/packages/music.scm (drumkv1): New variable.
> ---
>  gnu/packages/music.scm | 34 ++++++++++++++++++++++++++++++++++
>  1 file changed, 34 insertions(+)
>
> diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
> index 12233bf..5e882b2 100644
> --- a/gnu/packages/music.scm
> +++ b/gnu/packages/music.scm
> @@ -909,6 +909,40 @@ users to select LV2 plugins and run them with jalv.")
>  oscillators and stereo effects.")
>      (license license:gpl2+)))
>  
> +(define-public drumkv1
> +  (package
> +    (name "drumkv1")
> +    (version "0.8.0")
> +    (source (origin
> +              (method url-fetch)
> +              (uri
> +               (string-append "mirror://sourceforge/drumkv1/drumkv1/" version
> +                              "/drumkv1-" version ".tar.gz"))
> +              (sha256
> +               (base32
> +                "1n2kd468kn71yp2asmamprvblmdlvh0zd8lsh3598dwi4b7aa3ga"))))
> +    (build-system gnu-build-system)
> +    (arguments
> +     `(#:tests? #f ; There are no tests.
> +       #:configure-flags
> +       '("CXXFLAGS=-std=gnu++11")))
> +    (inputs
> +     `(("jack" ,jack-1)
> +       ("lv2" ,lv2)
> +       ("libsndfile" ,libsndfile)
> +       ("alsa-lib" ,alsa-lib)
> +       ("liblo" ,liblo)
> +       ("qtbase" ,qtbase)
> +       ("qttools" ,qttools)))
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)))

Does qttools end up in the closure?  I think it's used mainly for
building locale files or documentation.  Otherwise all look good!

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] gnu: Add drumkv1.
  2016-11-19 12:04 ` [PATCH 1/2] gnu: Add drumkv1 宋文武
@ 2016-11-19 16:28   ` Ricardo Wurmus
  0 siblings, 0 replies; 4+ messages in thread
From: Ricardo Wurmus @ 2016-11-19 16:28 UTC (permalink / raw)
  To: 宋文武; +Cc: guix-devel


宋文武 <iyzsong@member.fsf.org> writes:

> Ricardo Wurmus <rekado@elephly.net> writes:
>
>> * gnu/packages/music.scm (drumkv1): New variable.
>> ---
>>  gnu/packages/music.scm | 34 ++++++++++++++++++++++++++++++++++
>>  1 file changed, 34 insertions(+)
>>
>> diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
>> index 12233bf..5e882b2 100644
>> --- a/gnu/packages/music.scm
>> +++ b/gnu/packages/music.scm
>> @@ -909,6 +909,40 @@ users to select LV2 plugins and run them with jalv.")
>>  oscillators and stereo effects.")
>>      (license license:gpl2+)))
>>  
>> +(define-public drumkv1
>> +  (package
>> +    (name "drumkv1")
>> +    (version "0.8.0")
>> +    (source (origin
>> +              (method url-fetch)
>> +              (uri
>> +               (string-append "mirror://sourceforge/drumkv1/drumkv1/" version
>> +                              "/drumkv1-" version ".tar.gz"))
>> +              (sha256
>> +               (base32
>> +                "1n2kd468kn71yp2asmamprvblmdlvh0zd8lsh3598dwi4b7aa3ga"))))
>> +    (build-system gnu-build-system)
>> +    (arguments
>> +     `(#:tests? #f ; There are no tests.
>> +       #:configure-flags
>> +       '("CXXFLAGS=-std=gnu++11")))
>> +    (inputs
>> +     `(("jack" ,jack-1)
>> +       ("lv2" ,lv2)
>> +       ("libsndfile" ,libsndfile)
>> +       ("alsa-lib" ,alsa-lib)
>> +       ("liblo" ,liblo)
>> +       ("qtbase" ,qtbase)
>> +       ("qttools" ,qttools)))
>> +    (native-inputs
>> +     `(("pkg-config" ,pkg-config)))
>
> Does qttools end up in the closure?  I think it's used mainly for
> building locale files or documentation.  Otherwise all look good!

You’re right.  I’ll move qttools to native-inputs.  Thanks for the hint.

~~

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-11-19 16:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-19 10:27 [PATCH 1/2] gnu: Add drumkv1 Ricardo Wurmus
2016-11-19 10:27 ` [PATCH 2/2] gnu: Add samplv1 Ricardo Wurmus
2016-11-19 12:04 ` [PATCH 1/2] gnu: Add drumkv1 宋文武
2016-11-19 16:28   ` 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).