From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:47727) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hG22i-0004II-2S for guix-patches@gnu.org; Mon, 15 Apr 2019 09:53:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hG22g-0005OK-OP for guix-patches@gnu.org; Mon, 15 Apr 2019 09:53:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48959) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hG22g-0005OF-JK for guix-patches@gnu.org; Mon, 15 Apr 2019 09:53:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hG22g-0007J3-Gf for guix-patches@gnu.org; Mon, 15 Apr 2019 09:53:02 -0400 Subject: [bug#35288] [PATCH 1/3] gnu: Add dumb. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:47606) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hG21S-0004CI-Gs for guix-patches@gnu.org; Mon, 15 Apr 2019 09:51:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hG21R-0004jJ-03 for guix-patches@gnu.org; Mon, 15 Apr 2019 09:51:46 -0400 Received: from mout02.posteo.de ([185.67.36.66]:34473) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hG21Q-0004gS-D8 for guix-patches@gnu.org; Mon, 15 Apr 2019 09:51:44 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id CD92B2400FC for ; Mon, 15 Apr 2019 15:51:39 +0200 (CEST) From: Kei Kebreau Date: Mon, 15 Apr 2019 09:51:34 -0400 Message-Id: <20190415135134.31839-1-kkebreau@posteo.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35288@debbugs.gnu.org Cc: Kei Kebreau * gnu/packages/music.scm (dumb): New variable. --- gnu/packages/music.scm | 65 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 64 insertions(+), 1 deletion(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 10a23c919f..522bad2528 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -5,7 +5,7 @@ ;;; Copyright =C2=A9 2016 Al McElrath ;;; Copyright =C2=A9 2016, 2017 Efraim Flashner ;;; Copyright =C2=A9 2016, 2018 Leo Famulari -;;; Copyright =C2=A9 2016, 2017 Kei Kebreau +;;; Copyright =C2=A9 2016, 2017, 2019 Kei Kebreau ;;; Copyright =C2=A9 2016 John J. Foerch ;;; Copyright =C2=A9 2016 Alex Griffin ;;; Copyright =C2=A9 2017 ng0 @@ -81,6 +81,7 @@ #:use-module (gnu packages fonts) #:use-module (gnu packages fontutils) #:use-module (gnu packages freedesktop) + #:use-module (gnu packages game-development) #:use-module (gnu packages gcc) #:use-module (gnu packages gnupg) #:use-module (gnu packages gettext) @@ -446,6 +447,34 @@ background while you work.") (home-page "http://www.denemo.org") (license license:gpl3+))) =20 +(define-public dumb + (package + (name "dumb") + (version "2.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kode54/dumb.git") + (commit version))) + (sha256 + (base32 "1cnq6rb14d4yllr0yi32p9jmcig8avs3f43bvdjrx4r1mpawspi6")) + (file-name (git-file-name name version)))) + (build-system cmake-build-system) + (arguments + '(#:tests? #f ; no check target + #:configure-flags + (list "-DBUILD_SHARED_LIBS=3DON" + "-DBUILD_EXAMPLES=3DOFF"))) + (home-page "https://github.com/kode54/dumb") + (synopsis "Module audio renderer library") + (description + "DUMB is a tracker library with support for IT, XM, S3M and MOD fil= es. It +targets maximum accuracy to the original formats, with low-pass resonant= filters +for the IT files, accurate timing and pitching, and three resampling qua= lity +settings (aliasing, linear interpolation and cubic interpolation).") + (license (license:fsf-free "file://LICENSE")))) + (define-public hydrogen (package (name "hydrogen") @@ -1061,6 +1090,40 @@ be used alone or in concert with Non Mixer and Non= Sequencer to form a complete studio.") (license license:gpl2+))) =20 +(define-public vcvrack + (package + (name "vcvrack") + (version "0.6.2b") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/VCVRack/Rack.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0mn33aiafvqvds4hf9hywsr6f6y8y25g9vnjksf3cavxvnszy47y"))= )) + (build-system gnu-build-system) + (arguments + '(#:make-flags '("CC=3Dgcc") + #:phases + (modify-phases %standard-phases + (delete 'configure)))) ; no configure phase + (inputs + `(("curl" ,curl) + ("glew" ,glew) + ("jansson" ,jansson) + ("libzip" ,libzip) + ("rtmidi" ,rtmidi) + ("speexdsp" ,speexdsp))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "https://vcvrack.com/") + (synopsis "Virtual modular synthesizer") + (description + "VCV Rack is a virtual modular synthesizer.") + (license license:bsd-3))) + (define-public solfege (package (name "solfege") --=20 2.21.0