mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
40 lines
928 B
Nix
40 lines
928 B
Nix
{ lib, stdenv, fetchFromGitLab, cmake, gfortran, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libxc";
|
|
version = "6.2.2";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "libxc";
|
|
repo = "libxc";
|
|
rev = version;
|
|
hash = "sha256-JYhuyW95I7Q0edLIe7H//+ej5vh6MdAGxXjmNxDMuhQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ perl cmake gfortran ];
|
|
|
|
preConfigure = ''
|
|
patchShebangs ./
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-DENABLE_FORTRAN=ON"
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
"-DENABLE_XHOST=OFF"
|
|
# Force compilation of higher derivatives
|
|
"-DDISABLE_VXC=0"
|
|
"-DDISABLE_FXC=0"
|
|
"-DDISABLE_KXC=0"
|
|
"-DDISABLE_LXC=0"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Library of exchange-correlation functionals for density-functional theory";
|
|
homepage = "https://www.tddft.org/programs/Libxc/";
|
|
license = licenses.mpl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ markuskowa ];
|
|
};
|
|
}
|