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
107 lines
1.6 KiB
Nix
107 lines
1.6 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
gfortran,
|
|
buildType ? "meson",
|
|
meson,
|
|
ninja,
|
|
cmake,
|
|
pkg-config,
|
|
blas,
|
|
lapack,
|
|
mctc-lib,
|
|
mstore,
|
|
toml-f,
|
|
multicharge,
|
|
dftd4,
|
|
simple-dftd3,
|
|
python3,
|
|
}:
|
|
|
|
assert !blas.isILP64 && !lapack.isILP64;
|
|
assert (
|
|
builtins.elem buildType [
|
|
"meson"
|
|
"cmake"
|
|
]
|
|
);
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tblite";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tblite";
|
|
repo = "tblite";
|
|
rev = "v${version}";
|
|
hash = "sha256-hePy/slEeM2o1gtrAbq/nkEUILa6oQjkD2ddDstQ2Zc=";
|
|
};
|
|
|
|
patches = [
|
|
./0001-fix-multicharge-dep-needed-for-static-compilation.patch
|
|
|
|
# Fix wrong paths in pkg-config file
|
|
./pkgconfig.patch
|
|
];
|
|
|
|
# Python scripts in test subdirectories to run the tests
|
|
postPatch = ''
|
|
patchShebangs ./
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
gfortran
|
|
pkg-config
|
|
]
|
|
++ lib.optionals (buildType == "meson") [
|
|
meson
|
|
ninja
|
|
]
|
|
++ lib.optionals (buildType == "cmake") [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
blas
|
|
lapack
|
|
mctc-lib
|
|
mstore
|
|
toml-f
|
|
multicharge
|
|
dftd4
|
|
simple-dftd3
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
checkInputs = [
|
|
python3
|
|
];
|
|
|
|
checkFlags = [
|
|
"-j1" # Tests hang when multiple are run in parallel
|
|
];
|
|
|
|
doCheck = buildType == "meson";
|
|
|
|
preCheck = ''
|
|
export OMP_NUM_THREADS=2
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Light-weight tight-binding framework";
|
|
mainProgram = "tblite";
|
|
license = with licenses; [
|
|
gpl3Plus
|
|
lgpl3Plus
|
|
];
|
|
homepage = "https://github.com/tblite/tblite";
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.sheepforce ];
|
|
};
|
|
}
|