nixos/packages/ufo/default.nix

12 lines
238 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,
2024-09-12 02:21:20 +08:00
tbb, matplotplusplus, biu
2024-06-10 20:59:01 +08:00
}: stdenv.mkDerivation
{
name = "ufo";
src = ./.;
2024-09-12 02:21:20 +08:00
buildInputs = [ tbb matplotplusplus biu ];
2024-06-10 20:59:01 +08:00
nativeBuildInputs = [ cmake pkg-config ];
doCheck = true;
2024-06-10 20:59:01 +08:00
}