2019-10-28 09:17:49 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, cmake
|
2019-10-07 12:03:13 +01:00
|
|
|
, singlePrec ? true
|
|
|
|
, mpiEnabled ? false
|
|
|
|
, fftw
|
|
|
|
, openmpi
|
|
|
|
, perl
|
2012-11-23 14:29:17 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2020-11-01 00:24:33 +00:00
|
|
|
name = "gromacs-2020.4";
|
2012-11-23 14:29:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-11-01 00:24:33 +00:00
|
|
|
url = "ftp://ftp.gromacs.org/pub/gromacs/gromacs-2020.4.tar.gz";
|
|
|
|
sha256 = "1rplvgna60nqyb8nspaz3bfkwb044kv3zxdaa5whql5m441nj6am";
|
2012-11-23 14:29:17 +00:00
|
|
|
};
|
|
|
|
|
2019-10-07 12:03:13 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ fftw perl ]
|
2016-02-24 09:34:22 +00:00
|
|
|
++ (stdenv.lib.optionals mpiEnabled [ openmpi ]);
|
2012-11-23 14:29:17 +00:00
|
|
|
|
2019-10-28 09:17:49 +00:00
|
|
|
cmakeFlags = (
|
|
|
|
if singlePrec then [
|
|
|
|
"-DGMX_DOUBLE=OFF"
|
|
|
|
] else [
|
|
|
|
"-DGMX_DOUBLE=ON"
|
|
|
|
"-DGMX_DEFAULT_SUFFIX=OFF"
|
|
|
|
]
|
|
|
|
) ++ (
|
|
|
|
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; {
|
2019-10-28 09:17:49 +00:00
|
|
|
homepage = "http://www.gromacs.org";
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|