gnu: uncrustify: Use git reference instead of GitHub archive.

* gnu/packages/code.scm (uncrustify): Use git reference instead of GitHub archive.
master
Pierre Neidhardt 2018-11-30 18:23:22 +01:00
parent f6e952803a
commit b5944fcbc3
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 6 additions and 5 deletions

View File

@ -542,13 +542,14 @@ independent targets.")
(name "uncrustify")
(version "0.68.1")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/uncrustify/uncrustify/archive/"
"uncrustify-" version ".zip"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/uncrustify/uncrustify/")
(commit (string-append name "-" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1jb3hmm11m2mgnypapak2lgyyvspnmx9bxd9dxis5swaja2ddxlg"))))
"0gf6vjcfy8pl7idvwsd500ffj9hri62q0n79kpb6cnfprrqpbgf4"))))
(build-system cmake-build-system)
(native-inputs
`(("unzip" ,unzip)