1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/jazzy/event-camera-renderer/default.nix

27 lines
1.2 KiB
Nix
Raw Normal View History

# 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-ros, ament-lint-auto, ament-lint-common, event-camera-codecs, event-camera-msgs, image-transport, rclcpp, rclcpp-components, ros-environment, sensor-msgs }:
buildRosPackage {
pname = "ros-jazzy-event-camera-renderer";
version = "1.3.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/event_camera_renderer-release/archive/release/jazzy/event_camera_renderer/1.3.4-1.tar.gz";
name = "1.3.4-1.tar.gz";
sha256 = "ea7d05e3740d68693cd2f70773bc4fff99c58202bcfe9841c7dc0b854a753968";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-auto ament-cmake-ros ];
checkInputs = [ ament-cmake-clang-format ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ event-camera-codecs event-camera-msgs image-transport rclcpp rclcpp-components ros-environment sensor-msgs ];
nativeBuildInputs = [ ament-cmake ament-cmake-auto ament-cmake-ros ];
meta = {
description = "package for rendering event_camera_msgs";
license = with lib.licenses; [ asl20 ];
};
}