+ xo-pykalmanfilter

This commit is contained in:
Roland Conybeare 2025-05-11 16:31:00 -05:00
commit e314e16e96
4 changed files with 47 additions and 5 deletions

View file

@ -0,0 +1,41 @@
{
# nixpkgs dependencies
stdenv, cmake, catch2, # ... other deps here
# xo dependencies
xo-cmake,
xo-kalmanfilter,
xo-pyutil,
xo-pyreactor,
# args
# attrset for fetching source code.
# { type, owner, repo, ref }
#
# e.g. type="github", owner="rconybea", repo="cmake-examples", ref="ex1b"
#
# see [[../flake.nix]]
#
#cmake-examples-ex1-path
# someconfigurationoption ? false
} :
stdenv.mkDerivation (finalattrs:
{
name = "xo-pykalmanfilter";
version = "1.0";
src = ../xo-pykalmanfilter;
cmakeFlags = ["-DCMAKE_MODULE_PATH=${xo-cmake}/share/cmake"];
doCheck = true;
nativeBuildInputs = [ cmake catch2 xo-cmake ];
propagatedBuildInputs = [
xo-pyutil
xo-pyreactor
xo-kalmanfilter
];
})

View file

@ -55,7 +55,7 @@
xo-process,
xo-pyprocess,
xo-kalmanfilter,
# xo-pykalmanfilter,
xo-pykalmanfilter,
#
xo-expression,
xo-pyexpression,
@ -95,6 +95,7 @@ buildEnv {
xo-pyreactor
xo-websock
xo-pywebsock
#
xo-statistics
xo-distribution
xo-pydistribution
@ -102,6 +103,8 @@ buildEnv {
xo-pysimulator
xo-process
xo-pyprocess
xo-kalmanfilter
xo-pykalmanfilter
#
xo-expression
xo-pyexpression
@ -109,7 +112,5 @@ buildEnv {
xo-reader
xo-jit
xo-pyjit
xo-kalmanfilter
# xo-pykalmanfilter
];
}