nixos/packages/biu/default.nix

18 lines
447 B
Nix
Raw Normal View History

2024-04-02 11:08:47 +08:00
{
2024-07-03 19:32:34 +08:00
stdenv, cmake, lib,
2024-09-07 17:13:32 +08:00
magic-enum, fmt, boost, eigen, range-v3, nameof, zpp-bits, highfive, tgbot-cpp, libbacktrace, hdf5, concurrencpp,
pocketfft
}: stdenv.mkDerivation rec
2024-04-02 11:08:47 +08:00
{
name = "biu";
src = ./.;
2024-09-07 17:13:32 +08:00
buildInputs =
[
magic-enum fmt boost range-v3 nameof zpp-bits eigen highfive tgbot-cpp libbacktrace hdf5
concurrencpp pocketfft
];
propagatedBuildInputs = buildInputs;
2024-04-02 11:08:47 +08:00
nativeBuildInputs = [ cmake ];
2024-06-19 20:06:12 +08:00
doCheck = true;
2024-04-02 11:08:47 +08:00
}