2017-12-31 05:11:12 +00:00
|
|
|
{ stdenv, fetchurl, gfortran, perl }:
|
|
|
|
|
|
|
|
let
|
2019-03-28 17:00:23 +00:00
|
|
|
version = "4.3.4";
|
2018-01-26 04:36:48 +00:00
|
|
|
|
2017-12-31 05:11:12 +00:00
|
|
|
in stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "libxc";
|
|
|
|
inherit version;
|
2017-12-31 05:11:12 +00:00
|
|
|
src = fetchurl {
|
2018-01-26 04:36:48 +00:00
|
|
|
url = "http://www.tddft.org/programs/octopus/down.php?file=libxc/${version}/libxc-${version}.tar.gz";
|
2019-03-28 17:00:23 +00:00
|
|
|
sha256 = "0dw356dfwn2bwjdfwwi4h0kimm69aql2f4yk9f2kk4q7qpfkgvm8";
|
2017-12-31 05:11:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gfortran ];
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
patchShebangs ./
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [ "--enable-shared" ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library of exchange-correlation functionals for density-functional theory";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://octopus-code.org/wiki/Libxc";
|
2017-12-31 05:11:12 +00:00
|
|
|
license = licenses.lgpl3;
|
2018-01-26 21:40:06 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2017-12-31 06:52:39 +00:00
|
|
|
maintainers = with maintainers; [ markuskowa ];
|
2017-12-31 05:11:12 +00:00
|
|
|
};
|
|
|
|
}
|