mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 11:09:41 -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)
|
(define-module (gnu packages gps)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system scons)
|
#:use-module (guix build-system scons)
|
||||||
|
@ -141,7 +142,7 @@ (define-public gpscorrelate
|
||||||
(define-public gama
|
(define-public gama
|
||||||
(package
|
(package
|
||||||
(name "gama")
|
(name "gama")
|
||||||
(version "2.29")
|
(version "2.30")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -149,14 +150,19 @@ (define-public gama
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"04dlh1pdaiq059ssrxa4yn24iqgjrzy2mq7s9n1pgrzlzz3a63y0"))
|
"0yph6q7a0dy2r2vsrkjg26q8v988pcvnaay5lk6q7k06plpr2x1m"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
(delete-file-recursively "lib/expat")
|
(delete-file-recursively "lib/expat")
|
||||||
(for-each delete-file (find-files "doc/fig" "\\.pdf$"))))))
|
(for-each delete-file (find-files "doc/fig" "\\.pdf$"))))))
|
||||||
(build-system gnu-build-system)
|
(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
|
(native-inputs
|
||||||
(list libxml2 yaml-cpp))
|
(list libxml2 yaml-cpp))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in a new issue