mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: guile-ares-rs: Downgrade to default Guile.
This is useful for users as they won’t need to do gymnastics to compile with guile-next. They can just use default Guile with Ares. * gnu/packages/guile-xyz.scm (guile-ares-rs): Update to latest commit. Change guile-next to guile-3.0 with guile-custom-ports. Change-Id: I2008834d5b91a3ee29b553de28a5035d05210618
This commit is contained in:
parent
e2417b4895
commit
9ac7fb1214
1 changed files with 26 additions and 24 deletions
|
@ -1405,33 +1405,35 @@ order to provide IDE functionality for Guile Scheme.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public guile-ares-rs
|
(define-public guile-ares-rs
|
||||||
(package
|
;; Commit to support Guile 3.9 + guile-custom-ports
|
||||||
(name "guile-ares-rs")
|
(let ((commit "6ccca2e21457c47917846e07c449d48c66b9420b")
|
||||||
(version "0.9.5")
|
(revision "0"))
|
||||||
(source
|
(package
|
||||||
(origin
|
(name "guile-ares-rs")
|
||||||
(method git-fetch)
|
(version (git-version "0.9.5" revision commit))
|
||||||
(uri (git-reference
|
(source
|
||||||
(url "https://git.sr.ht/~abcdw/guile-ares-rs")
|
(origin
|
||||||
(commit version)))
|
(method git-fetch)
|
||||||
(file-name (git-file-name name version))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://git.sr.ht/~abcdw/guile-ares-rs")
|
||||||
(base32
|
(commit commit)))
|
||||||
"06fc5kbcniysqixadi54vv96hy8l4wx6hqcii134fkb1d93078lq"))))
|
(file-name (git-file-name name version))
|
||||||
(build-system guile-build-system)
|
(sha256
|
||||||
(arguments
|
(base32
|
||||||
(list
|
"04n42wn6jblhmcx5l43nl7nsy3s0qlsn09l4k9xwgw5hg9nkkmg7"))))
|
||||||
#:source-directory "src/guile"))
|
(build-system guile-build-system)
|
||||||
;; Remove guile-next dependency, when guile package get custom text port
|
(arguments
|
||||||
(inputs `(("guile" ,guile-next)))
|
(list
|
||||||
(propagated-inputs (list guile-fibers))
|
#:source-directory "src/guile"))
|
||||||
(home-page "https://git.sr.ht/~abcdw/guile-ares-rs")
|
(inputs (list guile-3.0))
|
||||||
(synopsis "Asynchronous Reliable Extensible Sleek RPC Server for Guile")
|
(propagated-inputs (list guile-fibers guile-custom-ports))
|
||||||
(description "Asynchronous Reliable Extensible Sleek RPC Server for
|
(home-page "https://git.sr.ht/~abcdw/guile-ares-rs")
|
||||||
|
(synopsis "Asynchronous Reliable Extensible Sleek RPC Server for Guile")
|
||||||
|
(description "Asynchronous Reliable Extensible Sleek RPC Server for
|
||||||
Guile. It's based on nREPL protocol and can be used for programmable
|
Guile. It's based on nREPL protocol and can be used for programmable
|
||||||
interactions with a running guile processes, for implementing REPLs, IDEs,
|
interactions with a running guile processes, for implementing REPLs, IDEs,
|
||||||
test runners or other tools.")
|
test runners or other tools.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public guile-custom-ports
|
(define-public guile-custom-ports
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue