From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH 08/13] gnu: Add gx-hyperion-lv2. Date: Wed, 12 Oct 2016 20:12:44 +0200 Message-ID: <20161012181249.26326-9-rekado@elephly.net> References: <20161012181249.26326-1-rekado@elephly.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40666) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1buO27-00072O-8A for guix-devel@gnu.org; Wed, 12 Oct 2016 14:13:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1buO24-0003FP-SA for guix-devel@gnu.org; Wed, 12 Oct 2016 14:13:39 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:21315) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1buO24-0003Ec-JH for guix-devel@gnu.org; Wed, 12 Oct 2016 14:13:36 -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-hyperion-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 55b8b9f..41ed88b 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -2127,3 +2127,23 @@ pedal.")))) (synopsis "Saturation effect") (description "This package provides the LV2 plugin \"GxSaturator\", a saturation effect.")))) + +(define-public gx-hyperion-lv2 + (let ((commit "7d993bc77f9946b3df0e481632c61b2dcbb6549f") + (revision "1")) + (package (inherit gx-guvnor-lv2) + (name "gx-hyperion-lv2") + (version (string-append "0-" revision "." (string-take commit 9))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/brummer10/GxHyperion.lv2") + (commit commit))) + (sha256 + (base32 + "12klcyc6l9v93ii3478mqz44jzvh5np1sk8zzdmz42jp0w8qd429")) + (file-name (string-append name "-" version "-checkout")))) + (home-page "https://github.com/brummer10/GxHyperion.lv2") + (synopsis "Simulation of the Hyperion Fuzz pedal") + (description "This package provides the LV2 plugin \"GxHyperion\", a +simulation of the Hyperion Fuzz pedal.")))) -- 2.10.0