mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: emacs-beginend: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-beginend)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
145d1f39db
commit
df88a39650
1 changed files with 6 additions and 6 deletions
|
@ -10066,13 +10066,13 @@ (define-public emacs-beginend
|
|||
(version "2.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/DamienCassou/beginend/archive/"
|
||||
"v" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/DamienCassou/beginend.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0z4rbwffh9vxfvcrlvym4p73z7gf72q0b5iv33llbpcpbijknnrq"))))
|
||||
(base32 "1jbhg73g1rrkbwql5vi2b0ys9avfazmwzwgd90gkzwavw0ch9cvl"))))
|
||||
;; TODO: Run tests.
|
||||
(build-system emacs-build-system)
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue