gnu: emacs-biblio: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-biblio)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-08 23:35:52 +02:00
parent 63bca23d38
commit 8219da2c7f
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -9281,13 +9281,13 @@ outline-mode), so there is no such thing like an outshine mode, only
(version "0.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/cpitclaudel/biblio.el/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/cpitclaudel/biblio.el.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0vwrljmab8m1z83048gxx5mryml9f5pb3h0jpwkvqcl0ra152lzx"))))
(base32 "1gxjind6r235az59dr8liv03d8994mqb8a7m28j3c12q7p70aziz"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-seq" ,emacs-seq)