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

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

View File

@ -5608,19 +5608,19 @@ used for reverse direction.")
(name "emacs-monroe") (name "emacs-monroe")
(version "0.3.1") (version "0.3.1")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/sanel/monroe/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/sanel/monroe.git")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(sha256 (file-name (git-file-name name version))
(base32 (sha256
"0icdx8shkd951phlnmcq1vqaxp1l667q5rjscskc5r22aylakh4w")))) (base32 "101lfrykdbv37spkbw7zihhx26bc1lhjyxbanrcp9880bxj04jiy"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://github.com/sanel/monroe") (home-page "https://github.com/sanel/monroe")
(synopsis "Clojure nREPL client for Emacs") (synopsis "Clojure nREPL client for Emacs")
(description (description
"Monroe is a nREPL client for Emacs, focused on simplicity and easy "Monroe is a nREPL client for Emacs, focused on simplicity and easy
distribution, primarily targeting Clojure users") distribution, primarily targeting Clojure users")
(license license:gpl3+))) (license license:gpl3+)))