mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: lzlib: Use url-fetch instead of git-fetch.
* gnu/packages/guile.scm (guile-lzlib)[source]: Use url-fetch instead of git-fetch.
This commit is contained in:
parent
442413912b
commit
69361e8881
1 changed files with 9 additions and 10 deletions
|
@ -813,16 +813,15 @@ (define-public guile-lzlib
|
|||
(package
|
||||
(name "guile-lzlib")
|
||||
(version "0.0.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://notabug.org/guile-lzlib/guile-lzlib.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0ny4pbig5x1lv83b63c2613gwv98myk3rm44l88ic7lrff6cd2hr"))
|
||||
(modules '((guix build utils)))))
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append "https://notabug.org/guile-lzlib/guile-lzlib/archive/"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0rdmszn1qix085ci2mddwq5cypipc004fk7arrrkgn9bv39hazza"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:make-flags
|
||||
|
|
Loading…
Reference in a new issue