mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
29 lines
1.2 KiB
Nix
29 lines
1.2 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, trajectory-msgs, geometry-msgs, rosidl-default-runtime, std-msgs, ament-lint-common, ament-cmake, action-msgs, rosidl-default-generators, builtin-interfaces, ament-lint-auto }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-eloquent-control-msgs";
|
||
|
version = "2.2.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros-gbp/control_msgs-release/archive/release/eloquent/control_msgs/2.2.0-1.tar.gz";
|
||
|
name = "2.2.0-1.tar.gz";
|
||
|
sha256 = "14c831247ce449aa200d0b3a6d88e4c27a04264a34748cfa4b824e3626d7071d";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ trajectory-msgs geometry-msgs std-msgs builtin-interfaces action-msgs ];
|
||
|
checkInputs = [ ament-lint-common ament-lint-auto ];
|
||
|
propagatedBuildInputs = [ trajectory-msgs geometry-msgs rosidl-default-runtime std-msgs builtin-interfaces action-msgs ];
|
||
|
nativeBuildInputs = [ rosidl-default-generators ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''control_msgs contains base messages and actions useful for
|
||
|
controlling robots. It provides representations for controller
|
||
|
setpoints and joint and cartesian trajectories.'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|