gnu: emacs-sparql-mode: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-sparql-mode)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
45c6a66414
commit
2d965d82ed
|
@ -4495,14 +4495,15 @@ ongoing operations.")
|
||||||
(package
|
(package
|
||||||
(name "emacs-sparql-mode")
|
(name "emacs-sparql-mode")
|
||||||
(version "2.0.1")
|
(version "2.0.1")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://github.com/ljos/sparql-mode/archive/"
|
(method git-fetch)
|
||||||
"v" version ".tar.gz"))
|
(uri (git-reference
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(url "https://github.com/ljos/sparql-mode.git")
|
||||||
(sha256
|
(commit (string-append "v" version))))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"1s93mkllxnhy7fw616cnnc2danacdlarys0g3cn89drh0llh53cv"))))
|
(sha256
|
||||||
|
(base32 "0ywhqk6n5k0l85zjwbnrivnvxjzqipqrggv06lify6yv18qmyl6s"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/ljos/sparql-mode")
|
(home-page "https://github.com/ljos/sparql-mode")
|
||||||
(synopsis "SPARQL mode for Emacs")
|
(synopsis "SPARQL mode for Emacs")
|
||||||
|
|
Loading…
Reference in New Issue