gnu: guile-wisp: Update to 1.0.3
* gnu/packages/guile-xyz.scm (guile-wisp): Update to 1.0.3. [source]: Access via hg and change from bitbucket to hg.sr.ht. [arguments]: Replace 'bootstrap phase; remove Guile 3 patch because Guile 3 is supported in 1.0.3. [native-inputs]: Add autoconf and automake. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>master
parent
731354b8d7
commit
8b030edf02
|
@ -1621,15 +1621,16 @@ The library is shipped with documentation in Info format and usage examples.")
|
||||||
(define-public guile-wisp
|
(define-public guile-wisp
|
||||||
(package
|
(package
|
||||||
(name "guile-wisp")
|
(name "guile-wisp")
|
||||||
(version "1.0.2")
|
(version "1.0.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method hg-fetch)
|
||||||
(uri (string-append "https://bitbucket.org/ArneBab/"
|
(uri (hg-reference
|
||||||
"wisp/downloads/wisp-"
|
(url "https://hg.sr.ht/~arnebab/wisp")
|
||||||
version ".tar.gz"))
|
(changeset (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"03pz7pj9jyallynhflp5s7qax8dj1fs8la434wrfgz7g1kgjnvf6"))))
|
"10g97jz3ahpb5mg933ajsc3pa9jxlg14f42yf01qwx0dwq1b06d5"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((guix build gnu-build-system)
|
`(#:modules ((guix build gnu-build-system)
|
||||||
|
@ -1643,11 +1644,9 @@ The library is shipped with documentation in Info format and usage examples.")
|
||||||
(guix build emacs-utils))
|
(guix build emacs-utils))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'support-guile-3.0
|
(replace 'bootstrap
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "configure"
|
(invoke "autoreconf" "-vif")
|
||||||
(("_guile_versions_to_search=\"2.2")
|
|
||||||
"_guile_versions_to_search=\"3.0 2.2"))
|
|
||||||
#t))
|
#t))
|
||||||
(add-before 'configure 'patch-/usr/bin/env
|
(add-before 'configure 'patch-/usr/bin/env
|
||||||
(lambda _
|
(lambda _
|
||||||
|
@ -1689,7 +1688,9 @@ The library is shipped with documentation in Info format and usage examples.")
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile" ,guile-3.0)))
|
`(("guile" ,guile-3.0)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("emacs" ,emacs-minimal)
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("emacs" ,emacs-minimal)
|
||||||
("python" ,python)
|
("python" ,python)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(synopsis "Whitespace to lisp syntax for Guile")
|
(synopsis "Whitespace to lisp syntax for Guile")
|
||||||
|
|
Reference in New Issue