mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-08 12:20:41 -05:00
gnu: cl-string-match: Fix dependency.
* gnu/packages/lisp-xyz.scm (sbcl-cl-string-match)[arguments]: Add 'fix-dependency' phase. [source, home-page]: Update to new URL.
This commit is contained in:
parent
840a708088
commit
9070bfd2c0
1 changed files with 10 additions and 3 deletions
|
@ -2472,7 +2472,7 @@ (define-public sbcl-cl-string-match
|
|||
(origin
|
||||
(method hg-fetch)
|
||||
(uri (hg-reference
|
||||
(url "https://bitbucket.org/vityok/cl-string-match/")
|
||||
(url "https://github.com/vityok/cl-string-match")
|
||||
(changeset changeset)))
|
||||
(sha256
|
||||
(base32
|
||||
|
@ -2494,13 +2494,20 @@ (define-public sbcl-cl-string-match
|
|||
;; For testing:
|
||||
`(("lisp-unit" ,sbcl-lisp-unit)))
|
||||
(arguments
|
||||
`(#:tests? #f))
|
||||
`(#:tests? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-dependency
|
||||
(lambda _
|
||||
(substitute* "cl-string-match.asd"
|
||||
((":mgl-pax")
|
||||
":mgl-pax/document")))))))
|
||||
(synopsis "Set of utilities to manipulate strings in Common Lisp")
|
||||
(description
|
||||
"@command{cl-strings} is a small, portable, dependency-free set of
|
||||
utilities that make it even easier to manipulate text in Common Lisp. It has
|
||||
100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")
|
||||
(home-page "https://bitbucket.org/vityok/cl-string-match/")
|
||||
(home-page "https://github.com/vityok/cl-string-match")
|
||||
(license license:bsd-3))))
|
||||
|
||||
(define-public cl-string-match
|
||||
|
|
Loading…
Reference in a new issue