gnu: cl-triads: Update to 0.0.1.

* gnu/packages/lisp-xyz.scm (sbcl-triads)[source, home-page]: Update URL.
  [inputs]: Add sbcl-charje.loop and sbcl-command-line-args.

Change-Id: I9a6d1d484920c9c76e2f9d74142ecdc82d31dfde
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Charles 2024-06-14 01:34:27 -05:00 committed by Guillaume Le Vaillant
parent 3bdefd2343
commit f46e89bf7b
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -28111,20 +28111,18 @@ uniform interface to them all.")
(sbcl-package->ecl-package sbcl-trees))
(define-public sbcl-triads
(let ((commit "840b025bf3d65cc5eaead4542a02a3ca6d77c2b6")
(revision "0"))
(package
(name "sbcl-triads")
(version (git-version "0" revision commit))
(version "0.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/charJe/triads")
(commit commit)))
(url "https://git.sr.ht/~charje/triads")
(commit (string-append "v" version))))
(file-name (git-file-name "cl-triads" version))
(sha256
(base32 "146mwshynhdw82m2nxrcjvf1nk0z3fn6ywcd2vqxkly5qricc53w"))))
(base32 "0s47rcp3karml5b06g98adjr2wxn6y9p9bigh8y7wjihpr3075x1"))))
(build-system asdf-build-system/sbcl)
(outputs '("out" "bin"))
(arguments
@ -28146,16 +28144,18 @@ uniform interface to them all.")
(string-append (getcwd) "/triads")
(string-append (assoc-ref outputs "bin") "/bin")))))))
(inputs
(list sbcl-cl-str
(list sbcl-charje.loop
sbcl-cl-str
sbcl-command-line-args
sbcl-serapeum
sbcl-trivia))
(home-page "https://github.com/charJe/triads")
(home-page "https://git.sr.ht/~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))))
(license license:gpl3)))
(define-public cl-triads
(sbcl-package->cl-source-package sbcl-triads))