From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56584) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eQTD4-0002nW-Ly for guix-patches@gnu.org; Sun, 17 Dec 2017 02:18:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eQTD0-0007Xx-MD for guix-patches@gnu.org; Sun, 17 Dec 2017 02:18:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:57535) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eQTD0-0007XJ-Hy for guix-patches@gnu.org; Sun, 17 Dec 2017 02:18:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eQTD0-0000EQ-AJ for guix-patches@gnu.org; Sun, 17 Dec 2017 02:18:02 -0500 Subject: [bug#29750] [PATCH] gnu: Add sonivox-eas. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56473) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eQTCU-0002k0-FZ for guix-patches@gnu.org; Sun, 17 Dec 2017 02:17:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eQTCQ-00070l-FP for guix-patches@gnu.org; Sun, 17 Dec 2017 02:17:30 -0500 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21024) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eQTCQ-00070G-47 for guix-patches@gnu.org; Sun, 17 Dec 2017 02:17:26 -0500 From: Ricardo Wurmus Date: Sat, 16 Dec 2017 22:44:44 +0100 Message-Id: <20171216214444.26782-1-rekado@elephly.net> 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: 29750@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/music.scm (sonivox-eas): New variable. --- gnu/packages/music.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 1befaf26d..acbb2ee7b 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -3618,3 +3618,34 @@ by The Echo Nest.") @url{https://gpodder.net} APIs. It allows applications to discover, manage and track podcasts.") (license license:lgpl2.1+))) + +(define-public sonivox-eas + (package + (name "sonivox-eas") + (version "1.1.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pedrolcl/Linux-SonivoxEas.git") + (commit (string-append "v" version)))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0l9gs00p5g4k4qy6i7nv1mfi2n2wnsycwjrgrh9hxzam4irf2mw2")))) + (build-system cmake-build-system) + (arguments '(#:tests? #f)) ; there are no tests + (inputs + `(("alsa-lib" ,alsa-lib) + ("drumstick" ,drumstick) + ("pulseaudio" ,pulseaudio) + ("qtbase" ,qtbase))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "https://github.com/pedrolcl/Linux-SonivoxEas") + (synopsis "MIDI synthesizer library") + (description "This project is a real time General MIDI synthesizer based +on the Sonivox EAS Synthesizer by Google. It does not need external +soundfonts, using embedded samples instead.") + ;; Sonivox is released under the ASL2.0; the rest of the code is under + ;; GPLv2+. + (license (list license:gpl2+ license:asl2.0)))) -- 2.15.0