mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 08:28:09 +01:00
nongnu: sbcl-cl-electron: Update to 0.0.0-3.f2245dc.
* nongnu/packages/lisp.scm (sbcl-cl-electron): Update to 0.0.0-3.f2245dc. [native-inputs]: Remove `sbcl` and commented out `sbcl-lisp-unit2`. [inputs]: Add `sbcl-cl-ppcre`, `sbcl-lparallel` and `sbcl-spinneret`. [arguments]: Disable test and use asd-systems. Add phase to fix paths. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
587cf0a135
commit
f8b956664c
1 changed files with 17 additions and 10 deletions
|
@ -1,16 +1,14 @@
|
||||||
;;; SPDX-License-Identifier: GPL-3.0-or-later
|
;;; SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
;;; Copyright © 2022 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2022 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
;;; Copyright © 2023 André A. Gomes <andremegafone@gmail.com>
|
;;; Copyright © 2023, 2024 André A. Gomes <andremegafone@gmail.com>
|
||||||
|
|
||||||
(define-module (nongnu packages lisp)
|
(define-module (nongnu packages lisp)
|
||||||
#:use-module (ice-9 match)
|
#:use-module (ice-9 match)
|
||||||
#:use-module (gnu packages bash)
|
#:use-module (gnu packages bash)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
#:use-module (gnu packages node)
|
|
||||||
#:use-module (gnu packages lisp)
|
#:use-module (gnu packages lisp)
|
||||||
#:use-module (gnu packages lisp-xyz)
|
#:use-module (gnu packages lisp-xyz)
|
||||||
;; #:use-module (gnu packages lisp-check)
|
|
||||||
#:use-module (nongnu packages electron)
|
#:use-module (nongnu packages electron)
|
||||||
#:use-module (guix build-system copy)
|
#:use-module (guix build-system copy)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
|
@ -125,8 +123,8 @@ then open a browser at http://localhost:PORT, where PORT is the indicated port."
|
||||||
"https://franz.com/ftp/pub/legal/ACL-Express-20170301.pdf"))))
|
"https://franz.com/ftp/pub/legal/ACL-Express-20170301.pdf"))))
|
||||||
|
|
||||||
(define-public sbcl-cl-electron
|
(define-public sbcl-cl-electron
|
||||||
(let ((commit "458a60d8c9baae71906294ffae891c3d0686c672")
|
(let ((commit "f2245dc1450a6ad416984cf932be50e00957390a")
|
||||||
(revision "2"))
|
(revision "3"))
|
||||||
(package
|
(package
|
||||||
(name "sbcl-cl-electron")
|
(name "sbcl-cl-electron")
|
||||||
(version (git-version "0.0.0" revision commit))
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
@ -138,13 +136,22 @@ then open a browser at http://localhost:PORT, where PORT is the indicated port."
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(file-name (git-file-name "cl-electron" version))
|
(file-name (git-file-name "cl-electron" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1ya6y55kv0g3h19ifnmwbc752p00s9mj1b1n4ljw4n7ycxmdpb24"))))
|
(base32 "0c18xbwwnjaiwzd01dprdrwzp27nwihaf7pmkql1f5yk43x3ajs0"))))
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(native-inputs (list ;; sbcl-lisp-unit2
|
(inputs (list electron
|
||||||
sbcl))
|
|
||||||
(inputs (list electron node
|
|
||||||
sbcl-cl-json sbcl-iolib sbcl-cl-str sbcl-nclasses
|
sbcl-cl-json sbcl-iolib sbcl-cl-str sbcl-nclasses
|
||||||
sbcl-parenscript sbcl-bordeaux-threads))
|
sbcl-cl-ppcre sbcl-bordeaux-threads sbcl-lparallel
|
||||||
|
sbcl-parenscript sbcl-spinneret))
|
||||||
|
(arguments
|
||||||
|
'(#:tests? #f
|
||||||
|
#:asd-systems '("cl-electron" "cl-electron/demos")
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-paths
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(substitute* "source/core.lisp"
|
||||||
|
(("\"electron\"")
|
||||||
|
(string-append "\"" (assoc-ref inputs "electron") "/bin/electron\""))))))))
|
||||||
(synopsis "Common Lisp interface to Electron")
|
(synopsis "Common Lisp interface to Electron")
|
||||||
(home-page "https://github.com/atlas-engineer/cl-electron")
|
(home-page "https://github.com/atlas-engineer/cl-electron")
|
||||||
(description "@command{cl-electron} is a binding to Electron for
|
(description "@command{cl-electron} is a binding to Electron for
|
||||||
|
|
Loading…
Reference in a new issue