nixos/packages/ufo/default.nix

12 lines
344 B
Nix
Raw Normal View History

2024-06-10 20:59:01 +08:00
{
2024-08-11 18:01:46 +08:00
stdenv, cmake, pkg-config, version ? null,
yaml-cpp, eigen, fmt, concurrencpp, highfive, tbb, matplotplusplus, biu, zpp-bits
2024-06-10 20:59:01 +08:00
}: stdenv.mkDerivation
{
name = "ufo";
src = ./.;
2024-08-11 18:01:46 +08:00
buildInputs = [ yaml-cpp eigen fmt concurrencpp highfive tbb matplotplusplus biu zpp-bits ];
2024-06-10 20:59:01 +08:00
nativeBuildInputs = [ cmake pkg-config ];
doCheck = true;
2024-06-10 20:59:01 +08:00
}