Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,6 @@
hpp-universal-robot
hpp-util
mim-solvers
odri-control-interface
odri-masterboard-sdk
pinocchio
# keep-sorted end
;
Expand Down Expand Up @@ -242,6 +240,8 @@
hpp-tutorial
hpp-universal-robot
mim-solvers
odri-control-interface
odri-masterboard-sdk
pinocchio
toolbox-parallel-robots
# keep-sorted end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
stdenv,
cmake,
eigen,
python3Packages,
eigenpy,
boost,
python,
yaml-cpp,
odri-masterboard-sdk,
}:
Expand All @@ -21,9 +23,9 @@ stdenv.mkDerivation {
odri-masterboard-sdk
cmake
eigen
python3Packages.eigenpy
python3Packages.boost
python3Packages.python
eigenpy
boost
python
];

propagatedBuildInputs = [ yaml-cpp ];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
stdenv,
jrl-cmakemodules,
cmake,
python3Packages,
python,
numpy,
boost,
catch2_3,
}:

Expand All @@ -30,16 +32,16 @@ stdenv.mkDerivation {

nativeBuildInputs = [
jrl-cmakemodules
python3Packages.python
python
cmake
];

# from package.xml
buildInputs = with python3Packages; [ numpy ];
buildInputs = [ numpy ];

nativeCheckInputs = [ catch2_3 ];

propagatedBuildInputs = with python3Packages; [ boost ];
propagatedBuildInputs = [ boost ];

meta = {
description = "Hardware and Firmware of the Solo Quadruped Master Board";
Expand Down
Loading