guix_mirror_bot pushed a commit to branch kernel-updates
in repository guix.

commit df2943cf16578bd5245e984504e8ab512f486230
Author: David Elsing <[email protected]>
AuthorDate: Wed Jun 25 01:42:02 2025 +0200

    gnu: Add fortran-mstore.
    
    * gnu/packages/fortran-xyz.scm (fortran-mstore): New variable.
    
    Change-Id: I8ba80b6fb13337abf05c37a2e39a66dbbcc710ee
    Modified-by: Sharlatan Hellseher <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/fortran-xyz.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/fortran-xyz.scm b/gnu/packages/fortran-xyz.scm
index b29d1e5ce2..c7d308e89c 100644
--- a/gnu/packages/fortran-xyz.scm
+++ b/gnu/packages/fortran-xyz.scm
@@ -62,6 +62,38 @@ library for operating on molecular structures and reading 
and writing common
 geometry file formats.")
     (license license:asl2.0)))
 
+(define-public fortran-mstore
+  (package
+    (name "fortran-mstore")
+    (version "0.3.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/grimme-lab/mstore";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0g3jxc96hd7r57kczi5p28g2xm345ad1hk9lm5v6wlkmnrvg3ynd"))))
+    (build-system meson-build-system)
+    (arguments
+     (list
+      #:configure-flags
+      #~(list (string-append "-Dfortran_link_args=-Wl,-rpath="
+                             #$output "/lib"))))
+    (native-inputs
+     (list gfortran
+           pkg-config
+           python-minimal))
+    (inputs
+     (list fortran-mctc-lib))
+    (home-page "https://github.com/grimme-lab/mstore";)
+    (synopsis "Molecular structure data for testing")
+    (description
+     "This package contains a Fortran interface to obtain molecular geometries
+used for testing.")
+    (license license:asl2.0)))
+
 (define-public fortran-toml-f
   (package
     (name "fortran-toml-f")

Reply via email to