mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: gama: Update to 2.30.
* gnu/packages/gps.scm (gama): Update to 2.30. [arguments]<configure-flags>: Add option to force not to use bundled copy of expat. Change-Id: I41f3f037b60b3dd89c8ccb990a800edb041cbc62 Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
a8b4e49993
commit
46e5498805
1 changed files with 9 additions and 3 deletions
|
@ -27,6 +27,7 @@
|
|||
(define-module (gnu packages gps)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system scons)
|
||||
|
@ -141,7 +142,7 @@ (define-public gpscorrelate
|
|||
(define-public gama
|
||||
(package
|
||||
(name "gama")
|
||||
(version "2.29")
|
||||
(version "2.30")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
|
@ -149,14 +150,19 @@ (define-public gama
|
|||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"04dlh1pdaiq059ssrxa4yn24iqgjrzy2mq7s9n1pgrzlzz3a63y0"))
|
||||
"0yph6q7a0dy2r2vsrkjg26q8v988pcvnaay5lk6q7k06plpr2x1m"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(begin
|
||||
(delete-file-recursively "lib/expat")
|
||||
(for-each delete-file (find-files "doc/fig" "\\.pdf$"))))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments '(#:parallel-tests? #f)) ; race condition
|
||||
(arguments
|
||||
(list
|
||||
#:configure-flags #~(list
|
||||
;; force not to use of bundled copy of expat
|
||||
"--enable-expat_1_1=no")
|
||||
#:parallel-tests? #f)) ; race condition
|
||||
(native-inputs
|
||||
(list libxml2 yaml-cpp))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue