From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kei Kebreau Subject: Re: [PATCH 3/3] gnu: Add mod-utilities. Date: Sun, 16 Oct 2016 14:57:10 -0400 Message-ID: <87h98cazqx.fsf@openmailbox.org> References: <20161014215216.14787-1-rekado@elephly.net> <20161014215216.14787-3-rekado@elephly.net> Mime-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44275) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bvqcw-0005Lb-5p for guix-devel@gnu.org; Sun, 16 Oct 2016 14:57:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bvqct-0005D6-2D for guix-devel@gnu.org; Sun, 16 Oct 2016 14:57:42 -0400 Received: from smtp11.openmailbox.org ([62.4.1.45]:59075) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1bvqcs-0005CT-Ma for guix-devel@gnu.org; Sun, 16 Oct 2016 14:57:38 -0400 In-Reply-To: <20161014215216.14787-3-rekado@elephly.net> (Ricardo Wurmus's message of "Fri, 14 Oct 2016 23:52:16 +0200") 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: Ricardo Wurmus Cc: guix-devel@gnu.org --=-=-= Content-Type: text/plain Ricardo Wurmus writes: > * gnu/packages/music.scm (mod-utilities): New variable. > --- > gnu/packages/music.scm | 34 ++++++++++++++++++++++++++++++++++ > 1 file changed, 34 insertions(+) > > diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm > index d2e252e..e5715de 100644 > --- a/gnu/packages/music.scm > +++ b/gnu/packages/music.scm > @@ -2442,3 +2442,37 @@ slow gear audio effect to produce volume swells.")))) > (synopsis "Wah emulation with switchless activation") > (description "This package provides the LV2 plugin \"GxSwitchlessWah\", > a simulation of an analog Wah pedal with switchless activation.")))) > + > +(define-public mod-utilities > + (let ((commit "7cdeeac26ae682730740105ece121d4dddb8ba3f") > + (revision "1")) > + (package > + (name "mod-utilities") > + (version (string-append "0-" revision "." (string-take commit 9))) > + (source (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/moddevices/mod-utilities.git") > + (commit commit))) > + (sha256 > + (base32 > + "1ilnkbrmwrszxvc21qlb86h29yz7cnc6rcp0jmna1y693ny2qhf4")) > + (file-name (string-append name "-" version "-checkout")))) > + (build-system gnu-build-system) > + (arguments > + `(#:tests? #f ; there are no tests > + #:make-flags > + (list (string-append "INSTALL_PATH=" > + (assoc-ref %outputs "out") > + "/lib/lv2")) > + #:phases > + (modify-phases %standard-phases > + (delete 'configure)))) > + (inputs > + `(("lv2" ,lv2))) > + (home-page "https://github.com/moddevices/mod-utilities") > + (synopsis "LV2 utility plugins") > + (description "This package provides LV2 audio utility plugins, such as > +filters, crossovers, simple gain plugins without zipper noise, switch box > +plugins, a switch trigger, a toggle switch, and a peakmeter.") > + (license license:gpl2+)))) All three patches are reproducible and linting is fine, except for jalv-select's description; must start with an upper-case letter or digit! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJYA82HAAoJEOal7jwZRnoNtusP/iqqx9+cIRzM9qrilyJTStz6 L+PdYvtKmwXRj3BrmYCZIW8uyOCf/iY5HpJckZl+8O3QmIa4qR0iXADyrkV8hudj v9Dj972v5DxFdI7dOun+Bgfz5wEilqgZfd1zG/tEV6BGEzvyTYGP94D2iu33GyG+ UacwbvKduTiyOJ9blPFXyvlv7E56CXxk76IacRgqPoTVaQTDWW0U5zG6boM9juag wej64kwg21GfK5/06lXCFsqtyAdz+ExsFAboKcT65rlix2bd879qzpbXTbYRbjJ8 kz+wEE2Vk5lAC4rIOIYL2hpl0u+v26zGkWGC5NjMx++5VFVthTFXw9U88zfXCe5+ 0xo2KKCLQhVITnYlSjN0JoGt9butVSpxCKCE7IBgBMrKLab/OOwfUmULSoDUDlJk 8m64tWfn+U3i763Y/jQx7kIAfUDGtT9dCCOIbXmqKQBpOCKYSw7hDKK1b96k4rjc Rk7t8u73Tzm8DqONsgZ4Rw163JbJc0xbYy9fJup4xjzPa6vPziyAyZGNSoivcT3s ZjC/8E8PwW58UTXBB6Ly1Z4f/NGRtQ2XG3vwI4AU9PX5Ogkgh7dkv6/0kebVOLdA /TbifxdCzxT+yAD2xyg6vpyNwVswyMxNzoY83LkP8WS8EjXEzqLyscxyOBKgLozc HFUFm40NKYFg/UqE2Q2b =LHyc -----END PGP SIGNATURE----- --=-=-=--