nixpkgs/pkgs/development/libraries/libxc/default.nix

34 lines
834 B
Nix
Raw Normal View History

2017-12-31 08:11:12 +03:00
{ stdenv, fetchurl, gfortran, perl }:
let
2019-03-28 20:00:23 +03:00
version = "4.3.4";
2018-01-26 07:36:48 +03:00
2017-12-31 08:11:12 +03:00
in stdenv.mkDerivation {
2019-08-14 00:52:01 +03:00
pname = "libxc";
inherit version;
2017-12-31 08:11:12 +03:00
src = fetchurl {
2018-01-26 07:36:48 +03:00
url = "http://www.tddft.org/programs/octopus/down.php?file=libxc/${version}/libxc-${version}.tar.gz";
2019-03-28 20:00:23 +03:00
sha256 = "0dw356dfwn2bwjdfwwi4h0kimm69aql2f4yk9f2kk4q7qpfkgvm8";
2017-12-31 08:11:12 +03: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";
homepage = https://octopus-code.org/wiki/Libxc;
2017-12-31 08:11:12 +03:00
license = licenses.lgpl3;
platforms = [ "x86_64-linux" ];
2017-12-31 09:52:39 +03:00
maintainers = with maintainers; [ markuskowa ];
2017-12-31 08:11:12 +03:00
};
}