mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
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:
parent
9d7ecf1c82
commit
9da8707841
1 changed files with 2 additions and 2 deletions
|
@ -2872,11 +2872,11 @@ (define-public emacsy
|
|||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacsy-minimal
|
||||
(let ((commit "d459ca1d3d09e7624e662bc4cfc3596850796fc6"))
|
||||
(let ((commit "v0.4.1-28-gd459ca1"))
|
||||
(package
|
||||
(inherit emacsy)
|
||||
(name "emacsy-minimal")
|
||||
(version (git-version "v0.4.1" "28" commit))
|
||||
(version (string-drop commit 1))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
|
|
Loading…
Reference in a new issue