gnu: emacsy-minimal: Do not use "v" prefix in version string.

* gnu/packages/guile-xyz.scm (emacsy-minimal): Turn COMMIT binding into a
"git describe" string.
[version]: Drop first character of COMMIT.
This commit is contained in:
Marius Bakke 2020-05-25 13:32:53 +02:00
parent 9d7ecf1c82
commit 9da8707841
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -2872,11 +2872,11 @@ (define-public emacsy
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacsy-minimal (define-public emacsy-minimal
(let ((commit "d459ca1d3d09e7624e662bc4cfc3596850796fc6")) (let ((commit "v0.4.1-28-gd459ca1"))
(package (package
(inherit emacsy) (inherit emacsy)
(name "emacsy-minimal") (name "emacsy-minimal")
(version (git-version "v0.4.1" "28" commit)) (version (string-drop commit 1))
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference