forked from loco-3d/linear-feedback-controller
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflake.nix
More file actions
30 lines (28 loc) · 735 Bytes
/
Copy pathflake.nix
File metadata and controls
30 lines (28 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
description = "RosControl linear feedback controller with pal base estimator and RosTopics external interface.";
inputs.gepetto.url = "github:gepetto/nix";
outputs =
inputs:
inputs.gepetto.lib.mkFlakoboros inputs (
{ lib, ... }:
{
rosOverrideAttrs.linear-feedback-controller = {
src = lib.fileset.toSource {
root = ./.;
fileset = lib.fileset.unions [
./cmake
./CMakeLists.txt
./config
./controller_plugins.xml
./include
./launch
./LICENSE
./package.xml
./src
./tests
];
};
};
}
);
}