This commit is contained in:
2024-11-21 16:00:37 +08:00
parent d1432c7591
commit 28e4d29f2c
29 changed files with 985 additions and 2677 deletions

11
default.nix Normal file
View File

@@ -0,0 +1,11 @@
{
stdenv, cmake, pkg-config, version ? null,
tbb, matplotplusplus, biu
}: stdenv.mkDerivation
{
name = "ufo";
src = ./.;
buildInputs = [ tbb matplotplusplus biu ];
nativeBuildInputs = [ cmake pkg-config ];
doCheck = true;
}