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:
parent
b625752d03
commit
4f8fd64cf5
|
@ -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+)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue