diff options
author | Artyom Bologov <mail@aartaka.me> | 2023-04-24 17:15:07 +0400 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2023-04-26 15:08:15 +0200 |
commit | e129321f137ad954570a2e239bf662ea87687ac8 (patch) | |
tree | a4bf5b5680e3af76a2b54045c350e088f74c794a /gnu/packages/lisp-xyz.scm | |
parent | 62fed3b874c5e06a787828d58c91d3442a1768dc (diff) | |
download | guix-e129321f137ad954570a2e239bf662ea87687ac8.tar.gz guix-e129321f137ad954570a2e239bf662ea87687ac8.zip |
gnu: cl-nclasses: Update to 0.4.0.
gnu/packages/lisp-xyz.scm (sbcl-nclasses): Update to 0.4.0.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Diffstat (limited to 'gnu/packages/lisp-xyz.scm')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index ec42f7facb..196cf21e20 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -36,7 +36,7 @@ ;;; Copyright © 2022 Thomas Albers Raviola <thomas@thomaslabs.org> ;;; Copyright © 2022 Arun Isaac <arunisaac@systemreboot.net> ;;; Copyright © 2022 Trevor Richards <trev@trevdev.ca> -;;; Copyright © 2022 Artyom Bologov <mail@aartaka.me> +;;; Copyright © 2022, 2023 Artyom Bologov <mail@aartaka.me> ;;; ;;; This file is part of GNU Guix. ;;; @@ -25641,7 +25641,7 @@ desktop files to the right directories. (define-public sbcl-nclasses (package (name "sbcl-nclasses") - (version "0.3.0") + (version "0.4.0") (source (origin (method git-fetch) @@ -25651,7 +25651,7 @@ desktop files to the right directories. (file-name (git-file-name "cl-nclasses" version)) (sha256 (base32 - "0djs16v77ng14d26wpxf5qby2d3l1pfsd2c1qkg4wv6mnk16imnq")) + "0g34xm32h0bc0zcyrkr2637jdb8mgb2zymqp6zfjc912sisgcs0l")) (modules '((guix build utils))) (snippet `(begin @@ -25664,10 +25664,10 @@ desktop files to the right directories. (list sbcl-lisp-unit2 sbcl-nasdf)) (home-page "https://github.com/atlas-engineer/nclasses") - (synopsis "Simplify class and condition definitions.") + (synopsis "Simplify class, condition, and generic function definitions.") (description - "NClasses provides helper macros to help write classes and conditions -with less boilerplate. + "NClasses provides helper macros to help write classes, conditions, +generic functions, and CLOS code in general with less boilerplate. It's a fork of @code{hu.dwim.defclass-star}. It inclues some bug fixes and extra features like type inference.") |