gnu: offlineimap: Fetch sources from git.
* gnu/packages/mail.scm (offlineimap)[source]: Use GIT-FETCH.
This commit is contained in:
parent
5f5782311e
commit
bc7c9f7770
1 changed files with 6 additions and 5 deletions
|
@ -488,13 +488,14 @@ and corrections. It is based on a Bayesian filter.")
|
||||||
(name "offlineimap")
|
(name "offlineimap")
|
||||||
(version "7.2.1")
|
(version "7.2.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/OfflineIMAP/offlineimap/"
|
(uri (git-reference
|
||||||
"archive/v" version ".tar.gz"))
|
(url "https://github.com/OfflineIMAP/offlineimap")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1022xf2w1xax4vx4kzhlfbhaf0b72wkpvrcscvs4q8qk2ja68h8x"))))
|
"1m5i74baazwazqp98ssma968rnwzfl1nywb7icf0swc8447ps97q"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("asciidoc" ,asciidoc)))
|
`(("asciidoc" ,asciidoc)))
|
||||||
|
|
Reference in a new issue