[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/06: gnu: Add avogadro2.
From: |
guix-commits |
Subject: |
06/06: gnu: Add avogadro2. |
Date: |
Mon, 25 Jan 2021 22:21:55 -0500 (EST) |
kkebreau pushed a commit to branch master
in repository guix.
commit cf31ee0427ad9ac254a7fc2af9a4599d44c22f97
Author: Kei Kebreau <kkebreau@posteo.net>
AuthorDate: Sat Jan 23 17:29:50 2021 -0500
gnu: Add avogadro2.
* gnu/packages/chemistry.scm (avogadro2): New variable.
---
gnu/packages/chemistry.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/chemistry.scm b/gnu/packages/chemistry.scm
index e2a1ef5..5351ea5 100644
--- a/gnu/packages/chemistry.scm
+++ b/gnu/packages/chemistry.scm
@@ -179,6 +179,41 @@ processing useful in computational chemistry, molecular
modeling,
bioinformatics, materials science, and related areas.")
(license license:bsd-3)))
+(define-public avogadro2
+ (package
+ (name "avogadro2")
+ (version "1.93.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/OpenChemistry/avogadroapp")
+ (commit version)))
+ (sha256
+ (base32
+ "1z3pjlwja778a1dmvx9aqz2hlw5q9g3kqxhm9slz08452600jsv7"))
+ (file-name (git-file-name name version))))
+ (build-system cmake-build-system)
+ (native-inputs
+ `(("eigen" ,eigen)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("avogadrolibs" ,avogadrolibs)
+ ("hdf5" ,hdf5)
+ ("molequeue" ,molequeue)
+ ("qtbase" ,qtbase)))
+ ;; TODO: Enable tests with "-DENABLE_TESTING" configure flag.
+ (arguments
+ '(#:tests? #f))
+ (home-page "https://www.openchemistry.org/projects/avogadro2/")
+ (synopsis "Advanced molecule editor")
+ (description
+ "Avogadro 2 is an advanced molecule editor and visualizer designed for use
+in computational chemistry, molecular modeling, bioinformatics, materials
+science, and related areas. It offers flexible high quality rendering and a
+powerful plugin architecture.")
+ (license license:bsd-3)))
+
(define-public domainfinder
(package
(name "domainfinder")
- branch master updated (59c03bd -> cf31ee0), guix-commits, 2021/01/25
- 01/06: gnu: Add spglib., guix-commits, 2021/01/25
- 02/06: gnu: Add mmtf-cpp., guix-commits, 2021/01/25
- 03/06: gnu: Add molequeue., guix-commits, 2021/01/25
- 05/06: gnu: Add avogadrolibs., guix-commits, 2021/01/25
- 06/06: gnu: Add avogadro2.,
guix-commits <=
- 04/06: gnu: Add libmsym., guix-commits, 2021/01/25