gnu: fmt: Update to 5.3.0.

* gnu/packages/pretty-print.scm (fmt): Update to 5.3.0.
  [arguments]: Remove #:configure-flags.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Meiyo Peng 2019-03-24 14:05:33 +08:00 committed by Ludovic Courtès
parent 8dc329656b
commit f970946c1d
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 3 additions and 6 deletions

View File

@ -4,6 +4,7 @@
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2017 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2019 Meiyo Peng <meiyo@riseup.net>
;;;
;;; This file is part of GNU Guix.
;;;
@ -162,7 +163,7 @@ different programming languages.")
(define-public fmt
(package
(name "fmt")
(version "4.1.0")
(version "5.3.0")
(source (origin
(method url-fetch)
(uri (string-append
@ -170,14 +171,10 @@ different programming languages.")
version "/fmt-" version ".zip"))
(sha256
(base32
"1swyqw3dn2vx5sw2yh5vk0vrvrkp7fv07cj4272yxl5rrq1byjcx"))))
"0p51nhmvjniqlffmmb9djhprnclvm448f2vkdxymvxw307hl21sc"))))
(build-system cmake-build-system)
(native-inputs
`(("unzip" ,unzip)))
(arguments
`(#:configure-flags
(list (string-append "-DCMAKE_INSTALL_LIBDIR="
(assoc-ref %outputs "out") "/lib"))))
(home-page "http://fmtlib.net/")
(synopsis "Small and fast C++ formatting library")
(description