gnu: cl-croatoan: Update to 0.1.

* gnu/packages/lisp-xyz.scm (sbcl-croatoan): Update to 0.1.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
cage 2023-05-15 19:55:27 +02:00 committed by Guillaume Le Vaillant
parent cf82526ac4
commit ed60a524fb
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -18512,39 +18512,37 @@ protocol for Mastodon.")
(sbcl-package->cl-source-package sbcl-tooter)) (sbcl-package->cl-source-package sbcl-tooter))
(define-public sbcl-croatoan (define-public sbcl-croatoan
(let ((commit "42e474f4dffe2f4e429905a612be5736c2c3e374") (package
(revision "7")) (name "sbcl-croatoan")
(package (version "0.1")
(name "sbcl-croatoan") (source
(version (git-version "0.0.1" revision commit)) (origin
(source (method git-fetch)
(origin (uri (git-reference
(method git-fetch) (url "https://github.com/McParen/croatoan")
(uri (git-reference (commit (string-append "v" version))))
(url "https://github.com/McParen/croatoan") (file-name (git-file-name "cl-croatoan" version))
(commit commit))) (sha256
(file-name (git-file-name "cl-croatoan" version)) (base32 "1whbvwc4df7zz0002xy3aczrpf4s3vk6kmyh9wydgwl112h060pd"))))
(sha256 (build-system asdf-build-system/sbcl)
(base32 "12hnj8gwk2600j3kn778xvvpx3y6z0428v5dq2qbf4vbzj66vcxj")))) (arguments
(build-system asdf-build-system/sbcl) '(#:phases
(arguments (modify-phases %standard-phases
'(#:phases (add-after 'unpack 'fix-paths
(modify-phases %standard-phases (lambda* (#:key inputs #:allow-other-keys)
(add-after 'unpack 'fix-paths (substitute* "ncurses/ncurses.lisp"
(lambda* (#:key inputs #:allow-other-keys) (("libncursesw.so")
(substitute* "ncurses/ncurses.lisp" (search-input-file inputs "/lib/libncursesw.so"))))))))
(("libncursesw.so") (inputs
(search-input-file inputs "/lib/libncursesw.so")))))))) (list ncurses
(inputs sbcl-cffi
(list ncurses sbcl-trivial-gray-streams
sbcl-cffi sbcl-bordeaux-threads))
sbcl-trivial-gray-streams (synopsis "Common Lisp bindings for the ncurses terminal library")
sbcl-bordeaux-threads)) (description "Croatoan provides high-level Common Lisp CLOS bindings for
(synopsis "Common Lisp bindings for the ncurses terminal library")
(description "Croatoan provides high-level Common Lisp CLOS bindings for
the ncurses terminal library.") the ncurses terminal library.")
(home-page "https://github.com/McParen/croatoan") (home-page "https://github.com/McParen/croatoan")
(license license:expat)))) (license license:expat)))
(define-public ecl-croatoan (define-public ecl-croatoan
(sbcl-package->ecl-package sbcl-croatoan)) (sbcl-package->ecl-package sbcl-croatoan))