gnu: emacs-4clojure: Fix version.
* gnu/packages/emacs-xyz.scm (emacs-4clojure)[version]: Use `git-version' as there is no proper release.
This commit is contained in:
parent
4e74cef97a
commit
034a3eacf7
1 changed files with 23 additions and 19 deletions
|
@ -5384,27 +5384,31 @@ board and goal value can be customized.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-4clojure
|
(define-public emacs-4clojure
|
||||||
(package
|
;; There is no release. Base version is extracted from Version keyword in
|
||||||
(name "emacs-4clojure")
|
;; the main file.
|
||||||
(version "0.2.1")
|
(let ((commit "4eccf8c7d4341a36c269451838114b27836699f9")
|
||||||
(source
|
(revision "1"))
|
||||||
(origin
|
(package
|
||||||
(method git-fetch)
|
(name "emacs-4clojure")
|
||||||
(uri (git-reference
|
(version (git-version "0.2.1" revision commit))
|
||||||
(url "https://github.com/emacsorphanage/4clojure.git")
|
(source
|
||||||
(commit "4eccf8c7d4341a36c269451838114b27836699f9")))
|
(origin
|
||||||
(file-name (git-file-name name version))
|
(method git-fetch)
|
||||||
(sha256
|
(uri (git-reference
|
||||||
(base32 "19x653lzc1dxil4ix257hciidbdmbhaxhs6qhlkwi9ygjrlrgvnk"))))
|
(url "https://github.com/emacsorphanage/4clojure.git")
|
||||||
(build-system emacs-build-system)
|
(commit commit)))
|
||||||
(propagated-inputs
|
(file-name (git-file-name name version))
|
||||||
`(("emacs-request" ,emacs-request)))
|
(sha256
|
||||||
(home-page "https://github.com/emacsorphanage/4clojure/")
|
(base32 "19x653lzc1dxil4ix257hciidbdmbhaxhs6qhlkwi9ygjrlrgvnk"))))
|
||||||
(synopsis "Open and evaluate 4clojure questions in Emacs")
|
(build-system emacs-build-system)
|
||||||
(description "Emacs 4clojure interacts with @url{http://www4clojure.com,
|
(propagated-inputs
|
||||||
|
`(("emacs-request" ,emacs-request)))
|
||||||
|
(home-page "https://github.com/emacsorphanage/4clojure/")
|
||||||
|
(synopsis "Open and evaluate 4clojure questions in Emacs")
|
||||||
|
(description "Emacs 4clojure interacts with @url{http://www4clojure.com,
|
||||||
4clojure} problems. You can open a specific question and move to the next or
|
4clojure} problems. You can open a specific question and move to the next or
|
||||||
previous one. You can also verify you answers.")
|
previous one. You can also verify you answers.")
|
||||||
(license license:gpl3)))
|
(license license:gpl3))))
|
||||||
|
|
||||||
(define-public emacs-base16-theme
|
(define-public emacs-base16-theme
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue