all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#72660] [PATCH] Add drumgizmo package
@ 2024-08-16 10:41 Apoorv via Guix-patches via
  0 siblings, 0 replies; only message in thread
From: Apoorv via Guix-patches via @ 2024-08-16 10:41 UTC (permalink / raw)
  To: 72660


[-- Attachment #1.1: Type: text/plain, Size: 151 bytes --]

This is a patch to add a new package, `drumgizmo` to `gnu/packages/music.scm`.

-- 
 Sent with Tuta; enjoy secure & ad-free emails: 
 https://tuta.com

[-- Attachment #1.2: Type: text/html, Size: 405 bytes --]

[-- Attachment #2: 0010-Add-drumgizmo-package.patch --]
[-- Type: text/x-patch, Size: 2544 bytes --]

From 09c95587b26012822d098775f3a94fbefbcd7c36 Mon Sep 17 00:00:00 2001
From: apoorv569 <apoorvs569@gmail.com>
Date: Fri, 16 Aug 2024 15:34:38 +0530
Subject: [PATCH 10/13] Add drumgizmo package

---
 gnu/packages/music.scm | 46 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 9cf0f70951..ad3ec3973e 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -8461,6 +8461,52 @@ (define-public kapitonov-plugins-pack
 Compatible with hosts such as Ardour, Qtractor, Carla, guitarix, jack-rack.")
      (license license:gpl3))))
 
+(define-public drumgizmo
+  (let ((commit "20a6f8c44a1ffd3a0628bec6a65a71a2e4013acc")
+        (revision "0"))
+    (package
+     (name "drumgizmo")
+     (version (git-version "1.0" revision commit))
+     (source
+      (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "http://cgit.drumgizmo.org/drumgizmo.git")
+             (recursive? #t)
+             (commit commit)))
+       (sha256
+        (base32 "0mpappp9k9can94csc620ah79ywqpcrp045fvv3f7yx9dbsnmh4f"))
+       (file-name (git-file-name name version))))
+     (build-system gnu-build-system)
+     (arguments
+      `(#:make-flags (list "CC=gcc")
+        #:configure-flags (list "--enable-lv2") ;"--enable-vst" ;; vst needs vst sdk
+        #:phases (modify-phases %standard-phases
+                                (replace 'bootstrap
+                                         (lambda _
+                                           (invoke "sh" "autogen.sh"))))))
+     (inputs (list libsmf
+                   libxext
+                   expat
+                   jack-2
+                   libsndfile
+                   alsa-lib
+                   zita-resampler))
+     (native-inputs (list autoconf
+                          automake
+                          libtool
+                          gettext-minimal
+                          lv2
+                          libx11
+                          glib
+                          pkg-config))
+     (home-page "https://drumgizmo.org")
+     (synopsis
+      "An open source cross-platform drum plugin and stand-alone application (lv2)")
+     (description
+      "An open source cross-platform drum plugin and stand-alone application (lv2)")
+     (license license:lgpl3))))
+
 ;;;
 ;;; Avoid adding new packages to the end of this file. To reduce the chances
 ;;; of a merge conflict, place them above by existing packages with similar
-- 
2.45.2


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2024-08-16 10:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-16 10:41 [bug#72660] [PATCH] Add drumgizmo package Apoorv via Guix-patches via

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.