-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdefault.nix
53 lines (48 loc) · 1.21 KB
/
default.nix
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
lib,
stdenv,
cmake,
eigen,
python3Packages,
rosPackages,
}:
stdenv.mkDerivation {
pname = "linear-feedback-controller-msgs";
version = "0.1.3";
src = lib.fileset.toSource {
root = ./.;
fileset = lib.fileset.unions [
./CMakeLists.txt
./include
./linear_feedback_controller_msgs_py
./msg
./package.xml
./tests
];
};
nativeBuildInputs = [
cmake
eigen
python3Packages.python
rosPackages.humble.ament-cmake
rosPackages.humble.ament-cmake-cppcheck
rosPackages.humble.ament-cmake-cpplint
rosPackages.humble.ament-cmake-flake8
rosPackages.humble.ament-cmake-pep257
rosPackages.humble.ament-cmake-uncrustify
rosPackages.humble.rosidl-default-generators
];
propagatedBuildInputs = [
rosPackages.humble.geometry-msgs
rosPackages.humble.sensor-msgs
rosPackages.humble.tf2-eigen
];
doCheck = true;
meta = {
description = "ROS messages which correspond to the loco-3d/linear-feedback-controller package.";
homepage = "/~https://github.com/loco-3d/linear-feedback-controller-msgs";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.nim65s ];
platforms = lib.platforms.linux;
};
}