gnu: teckit: Don't use unstable tarball.

* gnu/packages/fontutils.scm (teckit)[source]: Use GIT-FETCH.
This commit is contained in:
Tobias Geerinckx-Rice 2018-06-28 22:58:52 +02:00
parent f8f0b6523a
commit 1d668fd979
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -331,14 +331,14 @@ (define-public teckit
(package
(name "teckit")
(version "2.5.7")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/silnrsi/teckit/releases/download/v"
version "/teckit-" version ".tar.gz"))
(sha256
(base32
"1pbp97vcpj6x4yixx6ww0vsi1rrr99fksxdjafs6gdargzd24cj4"))))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/silnrsi/teckit")
(commit (string-append "v" version))))
(sha256
(base32 "1v8qadkbn311z9l8c22gw8nsij31lsikl114128w3drdz5npf83j"))))
(build-system gnu-build-system)
(inputs
`(("zlib" ,zlib)