gnu: uncrustify: Use git reference instead of GitHub archive.
* gnu/packages/code.scm (uncrustify): Use git reference instead of GitHub archive.
This commit is contained in:
parent
f6e952803a
commit
b5944fcbc3
|
@ -542,13 +542,14 @@ independent targets.")
|
||||||
(name "uncrustify")
|
(name "uncrustify")
|
||||||
(version "0.68.1")
|
(version "0.68.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/uncrustify/uncrustify/archive/"
|
(url "https://github.com/uncrustify/uncrustify/")
|
||||||
"uncrustify-" version ".zip"))
|
(commit (string-append name "-" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1jb3hmm11m2mgnypapak2lgyyvspnmx9bxd9dxis5swaja2ddxlg"))))
|
"0gf6vjcfy8pl7idvwsd500ffj9hri62q0n79kpb6cnfprrqpbgf4"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("unzip" ,unzip)
|
`(("unzip" ,unzip)
|
||||||
|
|
Loading…
Reference in New Issue