unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#72658] [PATCH] Add aether package
@ 2024-08-16 10:38 Apoorv via Guix-patches via
  0 siblings, 0 replies; only message in thread
From: Apoorv via Guix-patches via @ 2024-08-16 10:38 UTC (permalink / raw)
  To: 72658


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

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

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

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

[-- Attachment #2: 0005-Add-aether-package.patch --]
[-- Type: text/x-patch, Size: 2527 bytes --]

From 72775223f9187ba58168e38858cc2cb266b5a098 Mon Sep 17 00:00:00 2001
From: apoorv569 <apoorvs569@gmail.com>
Date: Fri, 16 Aug 2024 15:31:38 +0530
Subject: [PATCH 05/13] Add aether package

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

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index bb03f3d532..36729506a3 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -8180,6 +8180,48 @@ (define-public drops
      (home-page "https://github.com/clearly-broken-software/drops")
      (license license:gpl3+))))
 
+(define-public aether
+  (let ((commit "0beea433e2130473d934f5d46a138a0a148d84db")
+        (revision "0"))
+    (package
+     (name "aether")
+     (version (git-version "1.2.1" revision commit))
+     (source
+      (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/Dougal-s/Aether")
+             (recursive? #t)
+             (commit commit)))
+       (sha256
+        (base32 "163xyp1n077pilnx4acbqjy2npnsdsngwhihass315i00csh14dh"))
+       (file-name (git-file-name name version))))
+     (build-system cmake-build-system)
+     (arguments
+      (list
+       #:configure-flags #~(list "-DBUILD_GUI=ON")
+       #:tests? #f ;no test target
+       #:build-type "Release"
+       #:phases
+       #~(modify-phases %standard-phases
+                        (replace 'install
+                                 ;; no install target
+                                 (lambda* (#:key outputs #:allow-other-keys)
+                                   (let* ((out (assoc-ref outputs "out"))
+                                          (lv2 (string-append out "/lib/lv2")))
+                                     ;; Install LV2.
+                                     (mkdir-p lv2)
+                                     (copy-recursively
+                                      "aether.lv2"
+                                      (string-append lv2 "/aether.lv2"))))))))
+     (inputs (list libx11 glu mesa libglvnd))
+     (native-inputs (list pkg-config))
+     (home-page "https://dougal-s.github.io/Aether/")
+     (synopsis "An algorithmic reverb LV2 based on Cloudseed")
+     (description
+      "Aether is an algorithmic reverb LV2 plugin based on Cloudseed.")
+     (license license:expat))))
+
 ;;;
 ;;; 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:41 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:38 [bug#72658] [PATCH] Add aether package Apoorv via Guix-patches via

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).