@@ 0,0 1,63 @@
+;;; GNU Guix --- Functional package management for GNU
+;;;
+;;; Copyright © 2022 jgart <jgart@dismail.de>
+;;;
+;;; 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 <http://www.gnu.org/licenses/>.
+
+(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+)))
+