mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add mmtf-cpp.
* gnu/packages/chemistry.scm (mmtf-cpp): New variable.
This commit is contained in:
parent
ead609930f
commit
daa4728efc
1 changed files with 25 additions and 0 deletions
|
@ -242,6 +242,31 @@ (define-public inchi
|
|||
"file://LICENCE"
|
||||
"See LICENCE in the distribution."))))
|
||||
|
||||
(define-public mmtf-cpp
|
||||
(package
|
||||
(name "mmtf-cpp")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rcsb/mmtf-cpp")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"17ylramda69plf5w0v5hxbl4ggkdi5s15z55cv0pljl12yvyva8l"))))
|
||||
(build-system cmake-build-system)
|
||||
;; Tests require the soon-to-be-deprecated version 1 of the catch-framework.
|
||||
(arguments
|
||||
'(#:tests? #f))
|
||||
(home-page "https://mmtf.rcsb.org/")
|
||||
(synopsis "C++ API for the Macromolecular Transmission Format")
|
||||
(description "This package is a library for the
|
||||
@acronym{MMTF,macromolecular transmission format}, a binary encoding of
|
||||
biological structures.")
|
||||
(license license:expat)))
|
||||
|
||||
(define with-numpy-1.8
|
||||
(package-input-rewriting `((,python2-numpy . ,python2-numpy-1.8))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue