2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitLab, symlinkJoin, gfortran, perl, procps
|
2020-03-31 15:47:18 +01:00
|
|
|
, libyaml, libxc, fftw, blas, lapack, gsl, netcdf, arpack, autoreconfHook
|
2021-01-09 15:29:58 +00:00
|
|
|
, python3
|
2018-01-21 01:24:24 +00:00
|
|
|
}:
|
|
|
|
|
2020-04-20 21:50:55 +01:00
|
|
|
assert (!blas.isILP64) && (!lapack.isILP64);
|
2020-03-31 15:47:18 +01:00
|
|
|
|
2019-08-19 09:24:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "octopus";
|
2021-01-09 15:29:58 +00:00
|
|
|
version = "10.3";
|
2018-01-21 01:24:24 +00:00
|
|
|
|
2019-08-19 09:24:44 +01:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "octopus-code";
|
|
|
|
repo = "octopus";
|
|
|
|
rev = version;
|
2021-01-09 15:29:58 +00:00
|
|
|
sha256 = "1axr3j53mi30gm3f645ga5jkhxbc7rbx432w2k2lgg6g9dv3fcs4";
|
2018-01-21 01:24:24 +00:00
|
|
|
};
|
|
|
|
|
2019-08-19 09:24:44 +01:00
|
|
|
nativeBuildInputs = [ perl procps autoreconfHook ];
|
2021-01-09 15:29:58 +00:00
|
|
|
buildInputs = [
|
|
|
|
libyaml
|
|
|
|
gfortran
|
|
|
|
libxc
|
|
|
|
blas
|
|
|
|
lapack
|
|
|
|
gsl
|
|
|
|
fftw
|
|
|
|
netcdf
|
|
|
|
arpack
|
|
|
|
(python3.withPackages (ps: [ ps.pyyaml ]))
|
|
|
|
];
|
2018-01-21 01:24:24 +00:00
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-yaml-prefix=${libyaml}"
|
2020-03-31 15:47:18 +01:00
|
|
|
"--with-blas=-lblas"
|
|
|
|
"--with-lapack=-llapack"
|
2019-08-19 09:24:44 +01:00
|
|
|
"--with-fftw-prefix=${fftw.dev}"
|
2018-07-25 22:44:21 +01: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 23:37:30 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-01-21 01:24:24 +00:00
|
|
|
description = "Real-space time dependent density-functional theory code";
|
2020-04-01 02:11:51 +01: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" ];
|
|
|
|
};
|
|
|
|
}
|