gnu: emacs-benchmark-init: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-benchmark-init)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-04-08 23:39:17 +02:00
parent 0dac411dc1
commit 8d7f5c55a7
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 9 deletions

View File

@ -10574,15 +10574,15 @@ functions.")
(package (package
(name "emacs-benchmark-init") (name "emacs-benchmark-init")
(version "1.0") (version "1.0")
(source (origin (source
(method url-fetch) (origin
(uri (string-append (method git-fetch)
"https://github.com/dholm/benchmark-init-el/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/dholm/benchmark-init-el.git")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(sha256 (file-name (git-file-name name version))
(base32 (sha256
"0szyqr4nncwz4vd5gww1vz31kf9r2lx25p4d0d09pm35974x53kz")))) (base32 "1kyn1izm5sbqbp9whnhk9dn3yc7zy8bz5san5w3ivi3rpx15fh94"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://github.com/dholm/benchmark-init-el") (home-page "https://github.com/dholm/benchmark-init-el")
(synopsis "Benchmark Emacs @code{require} and @code{load} calls") (synopsis "Benchmark Emacs @code{require} and @code{load} calls")