mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-11 17:09:22 +08:00
18 lines
539 B
Nix
18 lines
539 B
Nix
{
|
|
stdenv, cmake, lib,
|
|
magic-enum, fmt, boost, eigen, range-v3, nameof, zpp-bits, highfive, tgbot-cpp, libbacktrace, hdf5, concurrencpp,
|
|
pocketfft, yaml-cpp, glaze
|
|
}: stdenv.mkDerivation rec
|
|
{
|
|
name = "biu";
|
|
src = ./.;
|
|
buildInputs =
|
|
[
|
|
magic-enum fmt boost range-v3 nameof zpp-bits eigen libbacktrace hdf5
|
|
concurrencpp pocketfft yaml-cpp glaze (highfive.override { inherit boost; }) (tgbot-cpp.override { inherit boost; })
|
|
];
|
|
propagatedBuildInputs = buildInputs;
|
|
nativeBuildInputs = [ cmake ];
|
|
doCheck = true;
|
|
}
|