nixpkgs/pkgs/applications/science/chemistry/openmolcas/default.nix

77 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab, cmake, gfortran, perl
, openblas, hdf5-cpp, python3, texlive
, armadillo, mpi, globalarrays, openssh
2020-01-07 14:36:59 +00:00
, makeWrapper, fetchpatch
2018-08-01 22:24:55 +00:00
} :
let
2020-10-19 12:11:19 +00:00
version = "20.10";
2018-09-27 08:47:02 +00:00
gitLabRev = "v${version}";
2018-08-01 22:24:55 +00:00
python = python3.withPackages (ps : with ps; [ six pyparsing ]);
in stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "openmolcas";
inherit version;
2018-08-01 22:24:55 +00:00
src = fetchFromGitLab {
owner = "Molcas";
repo = "OpenMolcas";
rev = gitLabRev;
2020-11-30 22:05:14 +00:00
sha256 = "0xr9plgb0cfmxxqmd3wrhvl0hv2jqqfqzxwzs1jysq2m9cxl314v";
2018-08-01 22:24:55 +00:00
};
patches = [
# Required to handle openblas multiple outputs
./openblasPath.patch
2020-10-19 12:11:19 +00:00
];
2020-01-07 14:36:59 +00:00
2018-08-01 22:24:55 +00:00
nativeBuildInputs = [ perl cmake texlive.combined.scheme-minimal makeWrapper ];
buildInputs = [
gfortran
openblas
hdf5-cpp
python
armadillo
mpi
2018-08-01 22:24:55 +00:00
globalarrays
openssh
];
cmakeFlags = [
"-DOPENMP=ON"
"-DGA=ON"
"-DMPI=ON"
"-DLINALG=OpenBLAS"
"-DTOOLS=ON"
"-DHDF5=ON"
"-DFDE=ON"
"-DOPENBLASROOT=${openblas.dev}"
2018-08-01 22:24:55 +00:00
];
GAROOT=globalarrays;
postConfigure = ''
# The Makefile will install pymolcas during the build grrr.
mkdir -p $out/bin
export PATH=$PATH:$out/bin
'';
postFixup = ''
# Wrong store path in shebang (no Python pkgs), force re-patching
sed -i "1s:/.*:/usr/bin/env python:" $out/bin/pymolcas
patchShebangs $out/bin
wrapProgram $out/bin/pymolcas --set MOLCAS $out
'';
meta = with lib; {
2018-08-01 22:24:55 +00:00
description = "Advanced quantum chemistry software package";
homepage = "https://gitlab.com/Molcas/OpenMolcas";
2018-08-01 22:24:55 +00:00
maintainers = [ maintainers.markuskowa ];
license = licenses.lgpl21;
platforms = [ "x86_64-linux" ];
2018-08-01 22:24:55 +00:00
};
}