gnu: fntsample: Don't use unstable tarball.

* gnu/packages/fontutils.scm (fntsample)[source]: Download using
git-fetch.
This commit is contained in:
Efraim Flashner 2020-06-23 16:08:15 +03:00
parent de0f36f0aa
commit 405b9ba048
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -831,14 +831,14 @@ (define-public fntsample
(name "fntsample")
(version "5.3")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/eugmes/fntsample/archive/release/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/eugmes/fntsample")
(commit (string-append "release/" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0awp4dh1g40ivzvm5xqlvcpcdw1vplrx3drjmbylr62y185vbs74"))))
"02rx3gp7k472304vhjwb129nw10a29s4nvgs7i2m6bpjhlk2xgs5"))))
(build-system cmake-build-system)
(arguments
`(#:tests? #f ; There are no tests.