From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:37066) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iT0ce-0000iR-Nx for guix-patches@gnu.org; Fri, 08 Nov 2019 04:32:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iT0cd-0007iE-3u for guix-patches@gnu.org; Fri, 08 Nov 2019 04:32:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:35795) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iT0cc-0007hn-EF for guix-patches@gnu.org; Fri, 08 Nov 2019 04:32:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iT0cc-0005uU-75 for guix-patches@gnu.org; Fri, 08 Nov 2019 04:32:02 -0500 Subject: [bug#38117] [PATCH] gnu: Add helm. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:36844) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iT0bZ-0008JA-Js for guix-patches@gnu.org; Fri, 08 Nov 2019 04:30:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iT0bV-0006wD-2D for guix-patches@gnu.org; Fri, 08 Nov 2019 04:30:56 -0500 Received: from mout02.posteo.de ([185.67.36.142]:32825) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iT0bU-0006v8-Sl for guix-patches@gnu.org; Fri, 08 Nov 2019 04:30:53 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id CF2FF2400FB for ; Fri, 8 Nov 2019 10:30:49 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 478Zkw42kvz6tmF for ; Fri, 8 Nov 2019 10:30:48 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Date: Fri, 08 Nov 2019 10:30:48 +0100 From: Alexandros Theodotou Message-ID: <443a28734ac5866ea443b9cd7366d65a@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: 38117@debbugs.gnu.org From 3f496aa17eeb192ba363327e6cfd6fe0be533a56 Mon Sep 17 00:00:00 2001 From: Alexandros Theodotou Date: Fri, 8 Nov 2019 09:25:08 +0000 Subject: [PATCH] gnu: Add helm. * gnu/packages/music.scm: (helm): New variable. --- gnu/packages/music.scm | 54 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index a30765e87f..cf883d034f 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -24,6 +24,7 @@ ;;; Copyright =C2=A9 2019 Jakob L. Kreuze ;;; Copyright =C2=A9 2019 raingloom ;;; Copyright =C2=A9 2019 David Wilson +;;; Copyright =C2=A9 2019 Alexandros Theodotou ;;; ;;; This file is part of GNU Guix. ;;; @@ -4699,3 +4700,56 @@ You can also get metadata about the playing track=20 such as the artist and title for integration into status line generators or other command-line=20 tools.") (home-page "https://github.com/altdesktop/playerctl") (license license:lgpl3+))) + +(define-public helm + (package + (name "helm") + (version "0.9.0") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/mtytel/helm.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "17ys2vvhncx9i3ydg3xwgz1d3gqv4yr5mqi7vr0i0ca6nad6x3d4")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:make-flags + (list (string-append "DESTDIR=3D" (assoc-ref %outputs "out")) + "lv2" "standalone") + #:phases + (modify-phases + %standard-phases + (add-after 'unpack=20 'include-pnglib-code-and-remove-usr-from-paths + (lambda _ + (substitute* "standalone/builds/linux/Makefile" + (("JUCE_INCLUDE_PNGLIB_CODE=3D0") + "JUCE_INCLUDE_PNGLIB_CODE=3D1")) + (substitute* "builds/linux/LV2/Makefile" + (("JUCE_INCLUDE_PNGLIB_CODE=3D0") + "JUCE_INCLUDE_PNGLIB_CODE=3D1")) + (substitute* "Makefile" (("/usr") "")) + #t)) + (delete 'configure)))) + (inputs + `(("alsa-lib" ,alsa-lib) + ("curl" ,curl) + ("freetype2" ,freetype) + ("hicolor-icon-theme" ,hicolor-icon-theme) + ("libxcursor" ,libxcursor) + ("libxinerama", libxinerama) + ("jack", jack-1) + ("mesa" ,mesa))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("lv2", lv2))) + (home-page "https://tytel.org/helm/") + (synopsis "Polyphonic synth with lots of modulation") + (description "Helm is a cross-platform polyphonic synthesizer=20 available standalone +and as an LV2 plugin.") + (license license:gpl3+))) --=20 2.24.0