mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: make-lua-sec: Don't use unstable tarball.
* gnu/packages/lua.scm (make-lua-sec)[source]: Download using git-fetch.
This commit is contained in:
parent
f2dc5f5bb6
commit
b63785ec79
1 changed files with 6 additions and 4 deletions
|
@ -295,12 +295,14 @@ (define (make-lua-sec name lua)
|
|||
(name name)
|
||||
(version "0.7")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/brunoos/luasec/archive/"
|
||||
"luasec-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/brunoos/luasec")
|
||||
(commit (string-append "luasec-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0c9sdz3gvrsbvvdqzpnsappgwl40hfljlpfybqis6wia3mdyjxi1"))))
|
||||
"1w2w030jn4lgbkmzp7j3znmj856vfj0ca8sn8r444r5zhmihd761"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:make-flags
|
||||
|
|
Loading…
Reference in a new issue