guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#58261] [PATCH v3 10/15] gnu: Add maeparser.


From: David Elsing
Subject: [bug#58261] [PATCH v3 10/15] gnu: Add maeparser.
Date: Thu, 13 Oct 2022 21:04:19 +0000

* gnu/packages/chemistry.scm (maeparser): New variable.
---
 gnu/packages/chemistry.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/chemistry.scm b/gnu/packages/chemistry.scm
index a9868ed64d..0712c44ad9 100644
--- a/gnu/packages/chemistry.scm
+++ b/gnu/packages/chemistry.scm
@@ -771,3 +771,24 @@ (define-public freesasa
 can be parameterized to arbitrary precision, and for high resolution versions
 of the algorithms, the calculations give identical results.")
     (license license:expat)))
+
+(define-public maeparser
+  (package
+    (name "maeparser")
+    (version "1.3.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/schrodinger/maeparser";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1yv4y5hn49fhylziigsg922bb244lb57p69r7vg9q899zd3l5b7l"))))
+    (build-system cmake-build-system)
+    (native-inputs (list boost))
+    (inputs (list zlib))
+    (home-page "https://github.com/schrodinger/maeparser";)
+    (synopsis "Maestro file parser")
+    (description "maeparser is a parser for Schrodinger Maestro files.")
+    (license license:expat)))
-- 
2.37.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]