From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:48488) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iTEAf-0005EL-8J for guix-patches@gnu.org; Fri, 08 Nov 2019 19:00:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iTEAd-0002WG-RP for guix-patches@gnu.org; Fri, 08 Nov 2019 19:00:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:39156) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iTEAd-0002WA-OT for guix-patches@gnu.org; Fri, 08 Nov 2019 19:00:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iTEAd-00010d-HO for guix-patches@gnu.org; Fri, 08 Nov 2019 19:00:03 -0500 Subject: [bug#38141] [PATCH] gnu: Add carla. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:48464) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iTEAS-0005Da-Ie for guix-patches@gnu.org; Fri, 08 Nov 2019 18:59:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iTEAQ-0002RJ-Qm for guix-patches@gnu.org; Fri, 08 Nov 2019 18:59:52 -0500 Received: from mout01.posteo.de ([185.67.36.141]:58785) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iTEAQ-0002QQ-I3 for guix-patches@gnu.org; Fri, 08 Nov 2019 18:59:50 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id ED92816005C for ; Sat, 9 Nov 2019 00:59:47 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 478y1Z6Dv5z6tm7 for ; Sat, 9 Nov 2019 00:59:46 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Date: Sat, 09 Nov 2019 00:59:46 +0100 From: Alexandros Theodotou Message-ID: <2b9e5d7b6cba2d46fa7c7dd41c9030d4@posteo.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: 38141@debbugs.gnu.org From 77de9785c18683c68dc22f640afb614ef4e88a6c Mon Sep 17 00:00:00 2001 From: Alexandros Theodotou Date: Fri, 8 Nov 2019 23:56:58 +0000 Subject: [PATCH] gnu: Add carla. * gnu/packages/audio.scm (carla): New variable. --- gnu/packages/audio.scm | 57 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 28dbf06f3b..20c093e610 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -23,6 +23,7 @@ ;;; Copyright =C2=A9 2019 Rutger Helling ;;; Copyright =C2=A9 2019 Arun Isaac ;;; Copyright =C2=A9 2019 Mathieu Othacehe +;;; Copyright =C2=A9 2019 Alexandros Theodotou ;;; ;;; This file is part of GNU Guix. ;;; @@ -3773,3 +3774,59 @@ other Gnaural instances, allowing synchronous=20 sessions between many users.") a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the=20 audio stream to one or more IceCast and/or ShoutCast servers.") (license license:gpl3+))) + +(define-public carla + (package + (name "carla") + (version "2.0.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/falkTX/Carla/archive/v" + version ".tar.gz")) + (file-name (string-append name "-v" version ".tar.gz")) + (sha256 + (base32 + "0hbcxwi6ln9vrv61vv11f7dn0z8q3wimjqvzh2z9mklcgx0xij6h")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:make-flags + (list (string-append "PREFIX=3D" (assoc-ref %outputs "out"))) + #:phases + (modify-phases %standard-phases + (add-before 'build 'set-CC-variable-and-show-features + (lambda _ + (setenv "CC" "gcc") + (invoke "make" "features"))) + (delete 'configure)))) + (inputs + `(("alsa-lib" ,alsa-lib) + ("ffmpeg" ,ffmpeg) + ("fluidsynth" ,fluidsynth) + ("file" ,file) + ("liblo" ,liblo) + ("libsndfile" ,libsndfile) + ("gtk+" ,gtk+) + ("python-pyliblo" ,python-pyliblo) + ("python-pyqt" ,python-pyqt) + ("python-rdflib" ,python-rdflib) + ;; python-pyqt shows the following error without python-wrapper: + ;; Error while finding module specification for=20 'PyQt5.uic.pyuic' + ;; (ModuleNotFoundError: No module named 'PyQt5') + ("python-wrapper" ,python-wrapper) + ("libx11" ,libx11) + ("qtbase" ,qtbase) + ("zlib" ,zlib))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "https://kxstudio.linuxaudio.org/Applications:Carla") + (synopsis "Audio plugin host") + (description " Carla is a fully-featured modular audio plugin host,=20 with +support for many audio drivers and plugin formats. It has features like +transport control, automation of parameters via MIDI CC and remote=20 control +over OSC. Carla currently supports LADSPA (including LRDF), DSSI, LV2,=20 VST2, +and VST3 plugin formats, plus SF2 and SFZ file support. It uses JACK as=20 the +default and preferred audio driver but also supports native drivers=20 like ALSA.") + (license license:gpl2+))) --=20 2.24.0