mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-12 18:10:47 +02:00
gnu: makefile2graph: Don't use unstable tarball.
* gnu/packages/code.scm (makefile2graph)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
38e10e08b3
commit
104264cd3a
1 changed files with 9 additions and 8 deletions
|
@ -515,14 +515,15 @@ produce colored output.")
|
||||||
(package
|
(package
|
||||||
(name "makefile2graph")
|
(name "makefile2graph")
|
||||||
(version "1.5.0")
|
(version "1.5.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://github.com/lindenb/" name
|
(method git-fetch)
|
||||||
"/archive/v" version ".tar.gz"))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://github.com/lindenb/makefile2graph.git")
|
||||||
(base32
|
(commit (string-append "v" version))))
|
||||||
"0h1vchkpmm9h6s87p5nf0ksjxcmsxpx8k62a508w428n570wcr4l"))
|
(file-name (git-file-name name version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
(sha256
|
||||||
|
(base32 "1gjfk3d8qg3cla7qd2y7r9s03whlfwy83q8k76xfcnqrjjfavdgk"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:test-target "test"
|
'(#:test-target "test"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue