mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: sqlcipher: Don't use autogenerated tarball.
* gnu/packages/databases.scm (sqlcipher)[source]: Download using git-fetch.
This commit is contained in:
parent
41b0d72f43
commit
2fc7e345aa
1 changed files with 7 additions and 6 deletions
|
@ -992,7 +992,7 @@ (define-public mariadb
|
||||||
`((add-after 'unpack 'apply-libatomics-patch
|
`((add-after 'unpack 'apply-libatomics-patch
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(let ((patch-file
|
(let ((patch-file
|
||||||
(assoc-ref inputs
|
(assoc-ref inputs
|
||||||
"mariadb-link-libatomic.patch")))
|
"mariadb-link-libatomic.patch")))
|
||||||
(invoke "patch" "-p1" "-i" patch-file)))))
|
(invoke "patch" "-p1" "-i" patch-file)))))
|
||||||
'())
|
'())
|
||||||
|
@ -3043,12 +3043,13 @@ (define-public sqlcipher
|
||||||
(version "3.4.2")
|
(version "3.4.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/sqlcipher/" name
|
(uri (git-reference
|
||||||
"/archive/v" version ".tar.gz"))
|
(url "https://github.com/sqlcipher/sqlcipher")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1nxarwbci8jx99f1d0y1ivxcv25s78l1p7q6qy28lkpkcx8pm2b9"))
|
(base32 "168wb6fvyap7y8j86fb3xl5rd4wmhiq0dxvx9wxwi5kwm1j4vn1a"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("libcrypto" ,openssl)
|
`(("libcrypto" ,openssl)
|
||||||
|
|
Loading…
Reference in a new issue