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
81 lines
1.3 KiB
Nix
81 lines
1.3 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
gfortran,
|
|
buildType ? "meson",
|
|
meson,
|
|
ninja,
|
|
cmake,
|
|
pkg-config,
|
|
python3,
|
|
jonquil,
|
|
}:
|
|
|
|
assert (
|
|
builtins.elem buildType [
|
|
"meson"
|
|
"cmake"
|
|
]
|
|
);
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mctc-lib";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grimme-lab";
|
|
repo = "mctc-lib";
|
|
rev = "v${version}";
|
|
hash = "sha256-MWqvFxFGnFrGppiSy97oUWz7p1sD6GkTrMEZTFgSExg=";
|
|
};
|
|
|
|
patches = [
|
|
# Allow dynamically linked jonquil as dependency. That then additionally
|
|
# requires linking in toml-f
|
|
./meson.patch
|
|
|
|
# Fix wrong generation of package config include paths
|
|
./cmake.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
gfortran
|
|
pkg-config
|
|
python3
|
|
]
|
|
++ lib.optionals (buildType == "meson") [
|
|
meson
|
|
ninja
|
|
]
|
|
++ lib.optional (buildType == "cmake") cmake;
|
|
|
|
buildInputs = [
|
|
jonquil
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
preCheck = ''
|
|
export OMP_NUM_THREADS=2
|
|
'';
|
|
|
|
postPatch = ''
|
|
patchShebangs --build config/install-mod.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Modular computation tool chain library";
|
|
mainProgram = "mctc-convert";
|
|
homepage = "https://github.com/grimme-lab/mctc-lib";
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.sheepforce ];
|
|
};
|
|
}
|