2023-11-24 13:11:26 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-11-24 13:11:26 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-auto, ament-cmake-clang-format, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, class-loader, event-camera-msgs, rclcpp, ros-environment, rosbag2-cpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-event-camera-codecs";
|
2024-02-09 13:42:10 +00:00
|
|
|
version = "1.2.4-r1";
|
2023-11-24 13:11:26 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-02-09 13:42:10 +00:00
|
|
|
url = "https://github.com/ros2-gbp/event_camera_codecs-release/archive/release/iron/event_camera_codecs/1.2.4-1.tar.gz";
|
|
|
|
name = "1.2.4-1.tar.gz";
|
|
|
|
sha256 = "9c5102e31369dd9dbaed2ab8ddd1dbe657d311c5ce26d8c30c01fd2f8cc8a025";
|
2023-11-24 13:11:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ament-cmake-auto ament-cmake-ros ];
|
|
|
|
checkInputs = [ ament-cmake-clang-format ament-cmake-gtest ament-lint-auto ament-lint-common rclcpp rosbag2-cpp ];
|
|
|
|
propagatedBuildInputs = [ class-loader event-camera-msgs ros-environment ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-auto ament-cmake-ros ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "package to encode and decode event_camera_msgs";
|
2023-11-24 13:11:26 +00:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|