* [bug#72663] [PATCH] Add ykchorus package
@ 2024-08-16 10:42 Apoorv via Guix-patches via
0 siblings, 0 replies; only message in thread
From: Apoorv via Guix-patches via @ 2024-08-16 10:42 UTC (permalink / raw)
To: 72663
[-- Attachment #1.1: Type: text/plain, Size: 150 bytes --]
This is a patch to add a new package, `ykchorus` to `gnu/packages/music.scm`.
--
Sent with Tuta; enjoy secure & ad-free emails:
https://tuta.com
[-- Attachment #1.2: Type: text/html, Size: 404 bytes --]
[-- Attachment #2: 0011-Add-ykchorus-package.patch --]
[-- Type: text/x-patch, Size: 2396 bytes --]
From d3128306aa570d4c4b7b535453324cfc252b8687 Mon Sep 17 00:00:00 2001
From: apoorv569 <apoorvs569@gmail.com>
Date: Fri, 16 Aug 2024 15:35:02 +0530
Subject: [PATCH 11/13] Add ykchorus package
---
gnu/packages/music.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index ad3ec3973e..d3e247bd10 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -8507,6 +8507,48 @@ (define-public drumgizmo
"An open source cross-platform drum plugin and stand-alone application (lv2)")
(license license:lgpl3))))
+(define-public ykchorus
+ (let ((commit "ee0e362f8ef30b55a440715e4da3bfb3dad6a30f")
+ (revision "1"))
+ (package
+ (name "ykchorus")
+ (version (git-version "0.2.4" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/SpotlightKid/ykchorus")
+ (recursive? #t)
+ (commit commit)))
+ (sha256
+ (base32 "0bz527l3wc0pzsfr384r9cy6x4ch2mxigyp4a3487sm74ylwwfqd"))
+ (file-name (git-file-name name version))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:make-flags
+ (list
+ (string-append "PREFIX=" (assoc-ref %outputs "out"))
+ (string-append "CC=" ,(cc-for-target)))
+ #:phases (modify-phases %standard-phases
+ ;; no configure target
+ (delete 'configure)
+ ;; check phase fails so deleting it for now
+ (delete 'check))))
+ (inputs (list lv2
+ libx11
+ libglvnd
+ liblo
+ dssi
+ jack-2))
+ (native-inputs (list lv2lint pkg-config))
+ (home-page "https://github.com/SpotlightKid/ykchorus")
+ (synopsis
+ "A chorus audio effect plugin based on DSP code by Togu Audio Line (TAL)")
+ (description
+ "A chorus effect inspired by the one found in certain
+well-known Japanese vintage analog synthesizers (You Know which).")
+ (license license:gpl2))))
+
;;;
;;; 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:42 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:42 [bug#72663] [PATCH] Add ykchorus 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).