diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-03-02 08:07:11 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-03-02 08:07:11 +0100 |
commit | 3d4fc910f73220f47e5f2459853333a7c83c5d1d (patch) | |
tree | d3178f93b78b3629dc7067cef69cf2a95490966d /gnu/packages/gps.scm | |
parent | 9160cccd767cdfa55f7a460750c6b0f7544c12eb (diff) | |
parent | 4a0549be52f3f46fbce61342d8de30f7b83130c5 (diff) |
Merge branch 'master' into emacs-team
Diffstat (limited to 'gnu/packages/gps.scm')
-rw-r--r-- | gnu/packages/gps.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/gps.scm b/gnu/packages/gps.scm index 4cbc1b3c88..75197ad23c 100644 --- a/gnu/packages/gps.scm +++ b/gnu/packages/gps.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com> ;;; Copyright © 2020 Marius Bakke <marius@gnu.org> ;;; Copyright © 2021 Björn Höfling <bjoern.hoefling@bjoernhoefling.de> +;;; Copyright © 2024 Andy Tai <atai@atai.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -47,6 +48,7 @@ #:use-module (gnu packages python) #:use-module (gnu packages python-xyz) #:use-module (gnu packages qt) + #:use-module (gnu packages serialization) #:use-module (gnu packages sqlite) #:use-module (gnu packages xml)) @@ -139,7 +141,7 @@ between two other data points.") (define-public gama (package (name "gama") - (version "2.27") + (version "2.29") (source (origin (method url-fetch) @@ -147,7 +149,7 @@ between two other data points.") version ".tar.gz")) (sha256 (base32 - "0h9kwgzz9ijzx6jcpc37qhadc41k1jdcv0s2wcpsz6zjmx63p2wk")) + "04dlh1pdaiq059ssrxa4yn24iqgjrzy2mq7s9n1pgrzlzz3a63y0")) (modules '((guix build utils))) (snippet '(begin @@ -156,7 +158,7 @@ between two other data points.") (build-system gnu-build-system) (arguments '(#:parallel-tests? #f)) ; race condition (native-inputs - (list libxml2)) + (list libxml2 yaml-cpp)) (inputs (list expat sqlite)) (home-page "https://www.gnu.org/software/gama/") |