guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 2164ed79c790a3145285bf5775bf2938d07297d1
Author: Lars Bilke <[email protected]>
AuthorDate: Thu Aug 14 12:19:22 2025 +0200

    gnu: Add iphreeqc
    
    * gnu/packages/geo.scm (iphreeqc): New variable.
    
    Change-Id: I6fc47869f21d573d8adad5e4f06ffebee317da4e
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/geo.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 6d019640fd..f4e21d898c 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -859,6 +859,31 @@ fully fledged Spatial SQL capabilities.")
                    license:mpl1.1
                    license:public-domain))))
 
+(define-public iphreeqc
+  (package
+    (name "iphreeqc")
+    (version "3.5.0-3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ufz/iphreeqc";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "12wiqyzpzx89k9c7q07w4ypnppvi6s88k6jjsnlnvaxfafyvrbw3"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:tests? #f
+       #:configure-flags (list "-DCMAKE_POSITION_INDEPENDENT_CODE=ON")))
+    (home-page "https://www.usgs.gov/software/phreeqc-version-3";)
+    (synopsis "C++ library for performing aqueous geochemical calculations")
+    (description
+     "PHREEQC implements several types of aqueous models including two
+ion-association aqueous models.  This package contains modifications for
+OpenGeoSys")
+    (license license:public-domain)))
+
 (define-public proj
   (package
     (name "proj")

Reply via email to