mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add fortran-simple-dftd3.
* gnu/packages/fortran-xyz.scm (fortran-simple-dftd3): New variable. Change-Id: I9d2bbbc7fc63725c9da0f120599a08cc4a7163c1 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
df2943cf16
commit
c79c4cb7ec
1 changed files with 39 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (gnu packages fortran-check)
|
#:use-module (gnu packages fortran-check)
|
||||||
#:use-module (gnu packages gcc)
|
#:use-module (gnu packages gcc)
|
||||||
|
#:use-module (gnu packages libffi)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python))
|
#:use-module (gnu packages python))
|
||||||
|
|
||||||
|
@ -94,6 +95,44 @@ geometry file formats.")
|
||||||
used for testing.")
|
used for testing.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public fortran-simple-dftd3
|
||||||
|
(package
|
||||||
|
(name "fortran-simple-dftd3")
|
||||||
|
(version "1.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/dftd3/simple-dftd3")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0aygmnax3vwz2x3ad7syksfjca4zc85nyslsibs0wg8wqfsmr33k"))))
|
||||||
|
(build-system meson-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:configure-flags
|
||||||
|
#~(list
|
||||||
|
"-Dpython=true"
|
||||||
|
(string-append "-Dfortran_link_args=-Wl,-rpath="
|
||||||
|
#$output "/lib"))))
|
||||||
|
(native-inputs
|
||||||
|
(list gfortran
|
||||||
|
pkg-config
|
||||||
|
python-minimal
|
||||||
|
python-cffi))
|
||||||
|
(inputs
|
||||||
|
(list fortran-mctc-lib
|
||||||
|
fortran-mstore
|
||||||
|
fortran-toml-f))
|
||||||
|
(home-page "https://github.com/dftd3/simple-dftd3")
|
||||||
|
(synopsis "Implementation of the DFT-D3 dispersion correction")
|
||||||
|
(description
|
||||||
|
"This library provides an implementation of the @url{DFT-D3,
|
||||||
|
https://www.chemie.uni-bonn.de/grimme/de/software/dft-d3/} dispersion
|
||||||
|
correction.")
|
||||||
|
(license (list license:lgpl3+ license:gpl3+))))
|
||||||
|
|
||||||
(define-public fortran-toml-f
|
(define-public fortran-toml-f
|
||||||
(package
|
(package
|
||||||
(name "fortran-toml-f")
|
(name "fortran-toml-f")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue