mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: interrobang: Use GIT-... helpers.
* gnu/packages/admin.scm (interrobang)[version]: Use GIT-VERSION. [source]: Use GIT-FILE-NAME.
This commit is contained in:
parent
7d6e8fda61
commit
807a30999d
1 changed files with 12 additions and 12 deletions
|
@ -2125,16 +2125,16 @@ (define-public interrobang
|
|||
(commit "896543735e1c99144765fdbd7b6e6b5afbd8b881"))
|
||||
(package
|
||||
(name "interrobang")
|
||||
(version (string-append "0.0.0-" revision "." (string-take commit 7)))
|
||||
(source (origin
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/TrilbyWhite/interrobang")
|
||||
(url "https://github.com/TrilbyWhite/interrobang.git")
|
||||
(commit commit)))
|
||||
(file-name (string-append name "-" version))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1n13m70p1hfba5dy3i8hfclbr6k9q3d9dai3dg4jvhdhmxcpjzdf"))))
|
||||
(base32 "1n13m70p1hfba5dy3i8hfclbr6k9q3d9dai3dg4jvhdhmxcpjzdf"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no tests
|
||||
|
|
Loading…
Reference in a new issue