gnu: vis: Fetch sources from git.
* gnu/packages/text-editors.scm (vis)[source]: Use GIT-FETCH and GIT-FILE-NAME.master
parent
c82cf31def
commit
d198eca0b3
|
@ -76,14 +76,15 @@
|
||||||
(package
|
(package
|
||||||
(name "vis")
|
(name "vis")
|
||||||
(version "0.6")
|
(version "0.6")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://github.com/martanne/vis/releases"
|
(method git-fetch)
|
||||||
"/download/v" version
|
(uri (git-reference
|
||||||
"/vis-" version ".tar.gz"))
|
(url "https://github.com/martanne/vis")
|
||||||
(sha256
|
(commit (string-append "v" version))))
|
||||||
(base32
|
(sha256
|
||||||
"0za89vrs97hysgmzpydprgvzsp7yfbr6la1w1c9pad4mqpqs7d4s"))))
|
(base32 "1zjm89cn3rfq8fxpwp66khy53s6vqlmw6q103qyyvix8ydzxdmsh"))
|
||||||
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "test"
|
`(#:test-target "test"
|
||||||
|
|
Reference in New Issue