Merge pull request #70602 from r-ryantm/auto-update/gromacs
gromacs: 2019.3 -> 2019.4
This commit is contained in:
commit
86d97bb02c
@ -1,21 +1,22 @@
|
|||||||
|
{ stdenv, fetchurl, cmake
|
||||||
{ stdenv, fetchurl, cmake,
|
, singlePrec ? true
|
||||||
singlePrec ? true,
|
, mpiEnabled ? false
|
||||||
mpiEnabled ? false,
|
, fftw
|
||||||
fftw,
|
, openmpi
|
||||||
openmpi
|
, perl
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "gromacs-2019.3";
|
name = "gromacs-2019.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "ftp://ftp.gromacs.org/pub/gromacs/gromacs-2019.3.tar.gz";
|
url = "ftp://ftp.gromacs.org/pub/gromacs/gromacs-2019.4.tar.gz";
|
||||||
sha256 = "0wvm6lj4hbasl2qkjcpicqjh7abxji4196dd2hmwlyivpycaa4a2";
|
sha256 = "0rqqrbjrdhprlw2z6cqid59xwxfdx05ikvywppvdp8f8vzp6chxs";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [cmake fftw]
|
nativeBuildInputs = [ cmake ];
|
||||||
|
buildInputs = [ fftw perl ]
|
||||||
++ (stdenv.lib.optionals mpiEnabled [ openmpi ]);
|
++ (stdenv.lib.optionals mpiEnabled [ openmpi ]);
|
||||||
|
|
||||||
cmakeFlags = ''
|
cmakeFlags = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user