me
/
guix
Archived
1
0
Fork 0

gnu: emacs-groovy-modes: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-groovy-modes)[source]: Download
using git-fetch.
master
Efraim Flashner 2019-11-26 20:48:19 +02:00
parent 7335f4617c
commit 2e1afa2a7c
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 6 additions and 6 deletions

View File

@ -11229,14 +11229,14 @@ supports multiple backends such as @code{vlc}, @code{mpg123},
(name "emacs-groovy-modes")
(version "2.0")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes"
"/archive/" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"15j0hnkx9nppjzda5cqsxxz5f3bq9hc4xfyjcdypzqiypcvmpa39"))))
"0c1d4cbnlny8gpcd20zr1wxx6ggf28jgh7sgd5r1skpsvjpbfqx2"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-s" ,emacs-s)))