2024-02-02 13:15:52 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-03-22 13:05:17 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, builtin-interfaces, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
|
2024-02-02 13:15:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-motion-capture-tracking-interfaces";
|
2024-03-22 13:05:17 +00:00
|
|
|
version = "1.0.4-r1";
|
2024-02-02 13:15:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-22 13:05:17 +00:00
|
|
|
url = "https://github.com/ros2-gbp/motion_capture_tracking-release/archive/release/iron/motion_capture_tracking_interfaces/1.0.4-1.tar.gz";
|
|
|
|
name = "1.0.4-1.tar.gz";
|
|
|
|
sha256 = "4095ae5847b4ed44fda0f442a96c9f1a69958c9e9914ea657d4625e5ce732220";
|
2024-02-02 13:15:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake rosidl-default-generators ];
|
2024-03-22 13:05:17 +00:00
|
|
|
checkInputs = [ ament-lint-common ];
|
2024-02-02 13:15:52 +00:00
|
|
|
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rosidl-default-runtime std-msgs ];
|
|
|
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Interfaces for motion_capture_tracking package.";
|
2024-02-02 13:15:52 +00:00
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|