gnu: fmt: Switch back to url-fetch.

* gnu/packages/pretty-print.scm (fmt)[source]: Use url-fetch instead of
  git-fetch since upstream uploads releases.  Both approaches produce the
  same package, but git-fetch requires more bandwidth.
This commit is contained in:
Pierre Neidhardt 2020-03-07 12:35:32 +01:00
parent 0bc557fd70
commit ece22a25b6
No known key found for this signature in database
GPG key ID: 9BDCF497A4BBCC7F

View file

@ -169,14 +169,12 @@ (define-public fmt
(name "fmt")
(version "6.1.2")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/fmtlib/fmt")
(commit version)))
(file-name (git-file-name name version))
(method url-fetch)
(uri (string-append "https://github.com/fmtlib/fmt/releases/download/"
version "/fmt-" version ".zip"))
(sha256
(base32
"1ngb2fd7c2jnxi3x5kjgxmpixmyc737f77vibij43dl77ybiaihi"))))
"1s1hxaby5byb07rgmrk4a0q11fxhz7b42khch7sp2qx974y0yrb3"))))
(build-system cmake-build-system)
(arguments
'(#:configure-flags '("-DBUILD_SHARED_LIBS=ON")))