From 06571731cc4d64254b8e952c7ebb46e111cab3ef Mon Sep 17 00:00:00 2001 From: jgart Date: Sun, 10 Apr 2022 17:27:01 -0400 Subject: [PATCH] add slippery-chicken module --- guixrus/packages/slippery-chicken.scm | 63 +++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 guixrus/packages/slippery-chicken.scm diff --git a/guixrus/packages/slippery-chicken.scm b/guixrus/packages/slippery-chicken.scm new file mode 100644 index 0000000..b719b2e --- /dev/null +++ b/guixrus/packages/slippery-chicken.scm @@ -0,0 +1,63 @@ +;;; GNU Guix --- Functional package management for GNU +;;; +;;; Copyright © 2022 jgart +;;; +;;; This file is not part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (guixrus packages slippery-chicken) + #:use-module (gnu packages) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guixrus packages lisp) + #:use-module (gnu packages lisp-xyz) + #:use-module (gnu packages music) + #:use-module (guix download) + #:use-module (guix git-download) + #:use-module (guix utils) + #:use-module (guix build utils) + #:use-module (guix build-system asdf) + #:use-module (srfi srfi-1) + #:use-module (srfi srfi-19)) + +(define-public slippery-chicken + (package + (name "slippery-chicken") + (version "1.0.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mdedwards/slippery-chicken") + (commit version))) + (sha256 + (base32 "1048vkfklcqzrivsm89x292jj92aiv9iymc3j8v194qzqvlkwkih")) + (file-name (git-file-name name version)))) + (build-system asdf-build-system/sbcl) +;; (arguments ; https://github.com/mdedwards/slippery-chicken/issues/44 +;; `(#:tests? #f ; There are no unit tests? +;; #:asd-files '("src/sc.asd") +;; #:asd-systems '("sc"))) + (inputs + (list sbcl-clm + sbcl-cmn + lilypond)) + (home-page "http://michael-edwards.org/sc/") + (synopsis "algorithmic composition software in common lisp and clos") + (description +"@code{slippery-chicken} is a Common Lisp and CLOS package for +algorithmimusic composition.") + (license license:gpl3+))) + -- 2.45.2