~ruther/guix-local

4d32b17c19cc86a5bd63d0a7bc2735c5da3a5f4a — jgart a month ago a8a9714
gnu: sbcl-cl-change-case: Update to 1.0.

* gnu/packages/lisp-xyz.scm (sbcl-cl-change-case): Update to 1.0.

Change-Id: I1627d80a22b117de271ca6f19c58fa09764787df
1 files changed, 23 insertions(+), 25 deletions(-)

M gnu/packages/lisp-xyz.scm
M gnu/packages/lisp-xyz.scm => gnu/packages/lisp-xyz.scm +23 -25
@@ 5086,32 5086,30 @@ is a library for creating graphical user interfaces.")
  (sbcl-package->ecl-package sbcl-cl-cffi-gtk))

(define-public sbcl-cl-change-case
  (let ((commit "45c70b601125889689e0c1c37d7e727a3a0af022")
        (revision "1"))
    (package
      (name "sbcl-cl-change-case")
      (version (git-version "0.2.0" revision commit))
      (home-page "https://github.com/rudolfochrist/cl-change-case")
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url home-page)
               (commit commit)))
         (file-name (git-file-name "cl-change-case" version))
         (sha256
          (base32 "0qmk341zzcsbf8sq0w9ix3r080zg4ri6vzxym63lhdjfzwz3y8if"))))
      (build-system asdf-build-system/sbcl)
      (inputs
       (list sbcl-cl-ppcre sbcl-cl-ppcre-unicode))
      (native-inputs
       (list sbcl-fiveam))
      (synopsis
       "Convert Common Lisp strings between camelCase, PascalCase and more")
      (description
       "@code{cl-change-case} is a library to convert strings between
  (package
    (name "sbcl-cl-change-case")
    (version "1.0")
    (home-page "https://github.com/rudolfochrist/cl-change-case")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url home-page)
              (commit version)))
       (file-name (git-file-name "cl-change-case" version))
       (sha256
        (base32 "1zm34q3n3qaz06y6x3j73mnh67bw2k5xdpbflj5hhxqwakyfv50m"))))
    (build-system asdf-build-system/sbcl)
    (inputs
     (list sbcl-cl-ppcre sbcl-cl-ppcre-unicode))
    (native-inputs
     (list sbcl-fiveam))
    (synopsis
     "Convert Common Lisp strings between camelCase, PascalCase and more")
    (description
     "@code{cl-change-case} is a library to convert strings between
camelCase, PascalCase, snake_case, param-case, CONSTANT_CASE and more.")
      (license license:llgpl))))
    (license license:llgpl)))

(define-public cl-change-case
  (sbcl-package->cl-source-package sbcl-cl-change-case))