From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH 03/13] gnu: Add gx-overdriver-lv2. Date: Wed, 12 Oct 2016 20:12:39 +0200 Message-ID: <20161012181249.26326-4-rekado@elephly.net> References: <20161012181249.26326-1-rekado@elephly.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40334) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1buO1l-0006iT-Jz for guix-devel@gnu.org; Wed, 12 Oct 2016 14:13:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1buO1h-0002y5-Lw for guix-devel@gnu.org; Wed, 12 Oct 2016 14:13:17 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:21491) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1buO1h-0002xi-DL for guix-devel@gnu.org; Wed, 12 Oct 2016 14:13:13 -0400 In-Reply-To: <20161012181249.26326-1-rekado@elephly.net> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/music.scm (gx-overdriver-lv2): New variable. --- gnu/packages/music.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 1f59719..8fff7b9 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -2026,3 +2026,23 @@ simulation of an overdrive or distortion pedal for guitars.") (description "This package provides the LV2 plugin \"GxVBassPreAmp\", a pre-amplifier simulation modelled after the 1984 Vox Venue Bass 100 Pre Amp Section.")))) + +(define-public gx-overdriver-lv2 + (let ((commit "ed71801987449414bf3adaa0dbfac68e8775f1ce") + (revision "1")) + (package (inherit gx-guvnor-lv2) + (name "gx-overdriver-lv2") + (version (string-append "0-" revision "." (string-take commit 9))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/brummer10/GxOverDriver.lv2") + (commit commit))) + (sha256 + (base32 + "13j614jh525fbkby79nnzwj0z1ac0c9wclyn5pfqvkmx6a7j24r8")) + (file-name (string-append name "-" version "-checkout")))) + (home-page "https://github.com/brummer10/GxOverDriver.lv2") + (synopsis "Overdrive effect with level and tone control") + (description "This package provides the LV2 plugin \"GxOverDriver\", an +overdrive effect.")))) -- 2.10.0