From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42417) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1inyJb-00046R-9w for guix-patches@gnu.org; Sun, 05 Jan 2020 00:19:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1inyJa-0007mk-2Z for guix-patches@gnu.org; Sun, 05 Jan 2020 00:19:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:37616) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1inyJZ-0007lp-Tj for guix-patches@gnu.org; Sun, 05 Jan 2020 00:19:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1inyJZ-0004tB-Q8 for guix-patches@gnu.org; Sun, 05 Jan 2020 00:19:01 -0500 Subject: [bug#38939] [PATCH] gnu: Add swh-plugins. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:41820) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1inyJG-00044f-92 for guix-patches@gnu.org; Sun, 05 Jan 2020 00:18:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1inyJE-0006Jx-A3 for guix-patches@gnu.org; Sun, 05 Jan 2020 00:18:42 -0500 Received: from mail-lj1-x22c.google.com ([2a00:1450:4864:20::22c]:46022) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1inyJD-00067p-VH for guix-patches@gnu.org; Sun, 05 Jan 2020 00:18:40 -0500 Received: by mail-lj1-x22c.google.com with SMTP id j26so47631309ljc.12 for ; Sat, 04 Jan 2020 21:18:39 -0800 (PST) From: Oleg Pykhalov Date: Sun, 5 Jan 2020 08:17:45 +0300 Message-Id: <20200105051745.7845-1-go.wigust@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 38939@debbugs.gnu.org Cc: Oleg Pykhalov * gnu/packages/audio.scm (swh-plugins): New variable. --- gnu/packages/audio.scm | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index a26fbed461..acc443839f 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2016 ng0 ;;; Copyright © 2016 Lukas Gradl ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice -;;; Copyright © 2018 Oleg Pykhalov +;;; Copyright © 2018, 2020 Oleg Pykhalov ;;; Copyright © 2018 okapi ;;; Copyright © 2018 Maxim Cournoyer ;;; Copyright © 2018 Clément Lassieur @@ -722,6 +722,36 @@ performances. The plugins include a cellular automaton synthesizer, an envelope follower, distortion effects, tape effects and more.") (license license:gpl2+))) +(define-public swh-plugins + (package + (name "swh-plugins") + (version "0.4.17") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/swh/ladspa.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1c98z2xxz9pgcb4dg99gz8qrylh5cnag0j18a52d88ifsy24isvq")))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("gettext" ,gettext-minimal) ;for autopoint + ("libtool" ,libtool) + ("perl" ,perl) + ("pkg-config" ,pkg-config) + ("which" ,which))) + (inputs + `(("fftwf" ,fftwf) + ("perl-xml-parser" ,perl-xml-parser))) + (build-system gnu-build-system) + (home-page "https://github.com/swh/ladspa/") + (synopsis "The SWH Plugins package for the LADSPA plugin system") + (description "This package provides Steve Harris's LADSPA plugins.") + (license license:gpl2+))) + (define-public swh-plugins-lv2 (package (name "swh-plugins-lv2") -- 2.24.1