2019-08-19 08:24:44 +00:00
|
|
|
{ stdenv, fetchFromGitLab, symlinkJoin, gfortran, perl, procps
|
2020-03-31 14:47:18 +00:00
|
|
|
, libyaml, libxc, fftw, blas, lapack, gsl, netcdf, arpack, autoreconfHook
|
2018-01-21 01:24:24 +00:00
|
|
|
}:
|
|
|
|
|
2020-04-20 20:50:55 +00:00
|
|
|
assert (!blas.isILP64) && (!lapack.isILP64);
|
2020-03-31 14:47:18 +00:00
|
|
|
|
2019-08-19 08:24:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "octopus";
|
2020-08-07 10:53:54 +00:00
|
|
|
version = "10.0";
|
2018-01-21 01:24:24 +00:00
|
|
|
|
2019-08-19 08:24:44 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "octopus-code";
|
|
|
|
repo = "octopus";
|
|
|
|
rev = version;
|
2020-08-07 10:53:54 +00:00
|
|
|
sha256 = "1c6q20y0x9aacwa7vp6gj3yvfzain7hnk6skxmvg3wazp02l91kn";
|
2018-01-21 01:24:24 +00:00
|
|
|
};
|
|
|
|
|
2019-08-19 08:24:44 +00:00
|
|
|
nativeBuildInputs = [ perl procps autoreconfHook ];
|
2020-03-31 14:47:18 +00:00
|
|
|
buildInputs = [ libyaml gfortran libxc blas lapack gsl fftw netcdf arpack ];
|
2018-01-21 01:24:24 +00:00
|
|
|
|
2018-07-25 21:44:21 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-yaml-prefix=${libyaml}"
|
2020-03-31 14:47:18 +00:00
|
|
|
"--with-blas=-lblas"
|
|
|
|
"--with-lapack=-llapack"
|
2019-08-19 08:24:44 +00:00
|
|
|
"--with-fftw-prefix=${fftw.dev}"
|
2018-07-25 21:44:21 +00:00
|
|
|
"--with-gsl-prefix=${gsl}"
|
|
|
|
"--with-libxc-prefix=${libxc}"
|
|
|
|
];
|
2018-01-21 01:24:24 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
checkTarget = "check-short";
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs ./
|
|
|
|
'';
|
|
|
|
|
|
|
|
postConfigure = ''
|
|
|
|
patchShebangs testsuite/oct-run_testsuite.sh
|
|
|
|
'';
|
|
|
|
|
2018-07-13 22:37:30 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-01-21 01:24:24 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Real-space time dependent density-functional theory code";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://octopus-code.org";
|
2018-01-21 01:24:24 +00:00
|
|
|
maintainers = with maintainers; [ markuskowa ];
|
2021-01-09 15:30:12 +00:00
|
|
|
license = with licenses; [ gpl2Only asl20 lgpl3Plus bsd3 ];
|
2018-01-21 01:24:24 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|