emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#28681: closed ([PATCH] gnu: Add snd.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#28681: closed ([PATCH] gnu: Add snd.)
Date: Wed, 04 Oct 2017 01:42:01 +0000

Your message dated Wed, 04 Oct 2017 09:40:03 +0800
with message-id <address@hidden>
and subject line Re: [bug#28681] [PATCH] gnu: Add snd.
has caused the debbugs.gnu.org bug report #28681,
regarding [PATCH] gnu: Add snd.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
28681: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=28681
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add snd. Date: Tue, 3 Oct 2017 11:14:32 +0800
* gnu/packages/audio.scm (snd): New variable.
---
 gnu/packages/audio.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 95a5fdd7c..6c863851e 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -36,6 +36,7 @@
   #:use-module (guix build-system trivial)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system python)
+  #:use-module (guix build-system glib-or-gtk)
   #:use-module (gnu packages)
   #:use-module (gnu packages algebra)
   #:use-module (gnu packages autotools)
@@ -79,6 +80,7 @@
   #:use-module (gnu packages xiph)
   #:use-module (gnu packages xml)
   #:use-module (gnu packages xorg)
+  #:use-module (gnu packages maths)
   #:use-module (srfi srfi-1))
 
 (define-public alsa-modular-synth
@@ -2926,3 +2928,37 @@ mixers.")
 
 (define-public python2-pyalsaaudio
   (package-with-python2 python-pyalsaaudio))
+
+(define-public snd
+  (package
+    (name "snd")
+    (version "17.7")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "ftp://ccrma-ftp.stanford.edu/pub/Lisp/";
+                                  "snd-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1vm0dy5qlycqkima7y5ajzvazyjybifa803fabjcpncjz08c26vp"))))
+    (build-system glib-or-gtk-build-system)
+    (arguments '(#:tests? #f))          ; no tests
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("alsa-lib" ,alsa-lib)
+       ("fftw" ,fftw)
+       ("gsl" ,gsl)
+       ("gtk+" ,gtk+)
+       ("flac" ,flac)
+       ("mpg123" ,mpg123)
+       ("speex" ,speex)
+       ("timidity++" ,timidity++)
+       ("vorbis-tools" ,vorbis-tools)
+       ("wavpack" ,wavpack)))
+    (synopsis "Sound editor")
+    (home-page "https://ccrma.stanford.edu/software/snd/";)
+    (description
+     "Snd is a sound editor modelled loosely after Emacs.  It can be
+customized and extended using either s7 (included in the Snd sources), Ruby,
+or Forth.")
+    (license (license:non-copyleft "file://COPYING"))))
-- 
2.13.3




--- End Message ---
--- Begin Message --- Subject: Re: [bug#28681] [PATCH] gnu: Add snd. Date: Wed, 04 Oct 2017 09:40:03 +0800 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux)
address@hidden (Ludovic Courtès) writes:

>> [...]
>> +customized and extended using either s7 (included in the Snd sources), Ruby,
>
> “using the s7 Scheme implementation” maybe?
>
> Otherwise LGTM, thanks!  :-)

Done, thank you for the review!


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]