2012-11-23 02:38:13 +00:00
|
|
|
|
2012-11-23 14:29:17 +00:00
|
|
|
{ stdenv, fetchurl, cmake,
|
|
|
|
singlePrec ? true,
|
2016-02-24 09:34:22 +00:00
|
|
|
mpiEnabled ? false,
|
|
|
|
fftw,
|
|
|
|
openmpi
|
2012-11-23 14:29:17 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2019-01-03 13:58:09 +00:00
|
|
|
name = "gromacs-2019";
|
2012-11-23 14:29:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-01-03 13:58:09 +00:00
|
|
|
url = "ftp://ftp.gromacs.org/pub/gromacs/gromacs-2019.tar.gz";
|
|
|
|
sha256 = "02qd27pgc5kwkk68m8hwarkbb1b9z5rdrm67yjqyxd5my2jq3cn5";
|
2012-11-23 14:29:17 +00:00
|
|
|
};
|
|
|
|
|
2016-02-24 09:34:22 +00:00
|
|
|
buildInputs = [cmake fftw]
|
|
|
|
++ (stdenv.lib.optionals mpiEnabled [ openmpi ]);
|
2012-11-23 14:29:17 +00:00
|
|
|
|
|
|
|
cmakeFlags = ''
|
|
|
|
${if singlePrec then "-DGMX_DOUBLE=OFF" else "-DGMX_DOUBLE=ON -DGMX_DEFAULT_SUFFIX=OFF"}
|
2016-02-24 09:34:22 +00:00
|
|
|
${if mpiEnabled then "-DGMX_MPI:BOOL=TRUE
|
|
|
|
-DGMX_CPU_ACCELERATION:STRING=SSE4.1
|
|
|
|
-DGMX_OPENMP:BOOL=TRUE
|
|
|
|
-DGMX_THREAD_MPI:BOOL=FALSE"
|
|
|
|
else "-DGMX_MPI:BOOL=FALSE" }
|
2012-11-23 14:29:17 +00:00
|
|
|
'';
|
|
|
|
|
2015-05-27 20:56:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-11-23 14:29:17 +00:00
|
|
|
homepage = "http://www.gromacs.org";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Molecular dynamics software package";
|
2012-11-23 14:29:17 +00:00
|
|
|
longDescription = ''
|
|
|
|
GROMACS is a versatile package to perform molecular dynamics,
|
|
|
|
i.e. simulate the Newtonian equations of motion for systems
|
|
|
|
with hundreds to millions of particles.
|
|
|
|
|
|
|
|
It is primarily designed for biochemical molecules like
|
|
|
|
proteins, lipids and nucleic acids that have a lot of
|
|
|
|
complicated bonded interactions, but since GROMACS is
|
|
|
|
extremely fast at calculating the nonbonded interactions (that
|
|
|
|
usually dominate simulations) many groups are also using it
|
|
|
|
for research on non-biological systems, e.g. polymers.
|
|
|
|
|
|
|
|
GROMACS supports all the usual algorithms you expect from a
|
|
|
|
modern molecular dynamics implementation, (check the online
|
|
|
|
reference or manual for details), but there are also quite a
|
|
|
|
few features that make it stand out from the competition.
|
|
|
|
|
2012-11-23 14:45:19 +00:00
|
|
|
See: http://www.gromacs.org/About_Gromacs for details.
|
2012-11-23 14:29:17 +00:00
|
|
|
'';
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = platforms.unix;
|
2012-11-23 14:29:17 +00:00
|
|
|
};
|
|
|
|
}
|