1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/rolling/event-camera-codecs/default.nix

26 lines
1.2 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# 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-rolling-event-camera-codecs";
version = "1.0.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/event_camera_codecs-release/archive/release/rolling/event_camera_codecs/1.0.5-1.tar.gz";
name = "1.0.5-1.tar.gz";
sha256 = "7d200647cb2f149a035d58060717c0e6196f2015369fb9cc438e9f72c4bb8a5e";
};
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 = {
description = "package to encode and decode event_camera_msgs";
license = with lib.licenses; [ asl20 ];
};
}