all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: jgart via Guix-patches via <guix-patches@gnu.org>
To: 58994@debbugs.gnu.org
Cc: jgart <jgart@dismail.de>
Subject: [bug#58994] [PATCH] gnu: Add cl-triads.
Date: Thu,  3 Nov 2022 11:53:40 -0500	[thread overview]
Message-ID: <20221103165340.6413-1-jgart@dismail.de> (raw)

* gnu/packages/lisp-xyz.scm (cl-triads, ecl-triads, sbcl-triads):
New variables.
---
 gnu/packages/lisp-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 2184295137..e3118710a8 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -24414,6 +24414,42 @@ (define-public cl-draw-cons-tree
 (define-public ecl-draw-cons-tree
   (sbcl-package->ecl-package sbcl-draw-cons-tree))
 
+(define-public sbcl-triads
+  (let ((commit "840b025bf3d65cc5eaead4542a02a3ca6d77c2b6")
+        (revision "0"))
+    (package
+     (name "sbcl-triads")
+     (version (git-version "0" revision commit))
+     (source
+      (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/charJe/triads")
+             (commit commit)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "146mwshynhdw82m2nxrcjvf1nk0z3fn6ywcd2vqxkly5qricc53w"))))
+     (build-system asdf-build-system/sbcl)
+     (arguments
+      '(#:asd-systems '("charje.triads")))
+     (inputs
+      (list sbcl-cl-str
+            sbcl-serapeum
+            sbcl-trivia))
+     (home-page "https://github.com/charJe/triads")
+     (synopsis "Music composition tool to convert roman numerals into triads")
+     (description "Triads is a simple command line tool that reads roman
+numeral notation from standard input (or a file) and an musical key and outputs
+the roman numeral in addition to the notes of the triad associated with that
+roman numeral given in the key.")
+     (license license:gpl3+))))
+
+(define-public cl-triads
+  (sbcl-package->cl-source-package sbcl-triads))
+
+(define-public ecl-triads
+  (sbcl-package->ecl-package sbcl-triads))
+
 (define-public sbcl-cl-morse
   (package
     (name "sbcl-cl-morse")
-- 
2.38.1





             reply	other threads:[~2022-11-03 16:56 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-03 16:53 jgart via Guix-patches via [this message]
2022-11-05 12:05 ` bug#58994: [PATCH] gnu: Add cl-triads Guillaume Le Vaillant

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221103165340.6413-1-jgart@dismail.de \
    --to=guix-patches@gnu.org \
    --cc=58994@debbugs.gnu.org \
    --cc=jgart@dismail.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.