Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
74 lines
1.4 KiB
Nix
74 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
cmake,
|
|
gfortran,
|
|
perl,
|
|
version ? "6.2.2",
|
|
}:
|
|
|
|
let
|
|
versionHashes = {
|
|
"6.2.2" = "sha256-JYhuyW95I7Q0edLIe7H//+ej5vh6MdAGxXjmNxDMuhQ=";
|
|
"7.0.0" = "sha256-mGyGtKDurOrSS0AYrtwhF62pJGPBLbPPNBgFV7fyyug=";
|
|
};
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "libxc";
|
|
inherit version;
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "libxc";
|
|
repo = "libxc";
|
|
rev = version;
|
|
hash = versionHashes."${version}";
|
|
};
|
|
|
|
# Timeout increase has already been included upstream in master.
|
|
# Check upon updates if this can be removed.
|
|
postPatch = ''
|
|
substituteInPlace testsuite/CMakeLists.txt \
|
|
--replace "PROPERTIES TIMEOUT 1" "PROPERTIES TIMEOUT 30"
|
|
'';
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
perl
|
|
cmake
|
|
gfortran
|
|
];
|
|
|
|
preConfigure = ''
|
|
patchShebangs ./
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_POLICY_VERSION_MINIMUM=3.5"
|
|
"-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";
|
|
mainProgram = "xc-info";
|
|
homepage = "https://www.tddft.org/programs/Libxc/";
|
|
license = licenses.mpl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ markuskowa ];
|
|
};
|
|
}
|