gnu: gpsbabel: Update to 1.5.2.
* gnu/packages/gps.scm (gpsbabel): Update to 1.5.2. [inputs]: Remove qt-4, add qt.
This commit is contained in:
parent
d694230abe
commit
6f1c3b806a
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||||
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -34,7 +35,7 @@
|
||||||
(define-public gpsbabel
|
(define-public gpsbabel
|
||||||
(package
|
(package
|
||||||
(name "gpsbabel")
|
(name "gpsbabel")
|
||||||
(version "1.5.0")
|
(version "1.5.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
;; XXX: Downloads from gpsbabel.org are hidden behind a POST, so
|
;; XXX: Downloads from gpsbabel.org are hidden behind a POST, so
|
||||||
|
@ -44,7 +45,7 @@
|
||||||
version ".orig.tar.gz"))
|
version ".orig.tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1pd01kra9l5ihy1by87qia0mpbpcif7g5yg7r9z2bnw7711jm3yb"))))
|
"0xf7wmy2m29g2lm8lqc74yf8rf7sxfl3cfwbk7dpf0yf42pb0b6w"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("--with-zlib=system")
|
`(#:configure-flags '("--with-zlib=system")
|
||||||
|
@ -62,7 +63,7 @@
|
||||||
(inputs
|
(inputs
|
||||||
`(("expat" ,expat)
|
`(("expat" ,expat)
|
||||||
("zlib" ,zlib)
|
("zlib" ,zlib)
|
||||||
("qt4" ,qt-4)))
|
("qt" ,qt)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("which" ,which)
|
`(("which" ,which)
|
||||||
("libxml2" ,libxml2))) ;'xmllint' needed for the KML tests
|
("libxml2" ,libxml2))) ;'xmllint' needed for the KML tests
|
||||||
|
|
Loading…
Reference in New Issue