mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 17:54:49 +03:00
26 lines
1.2 KiB
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-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-humble-event-camera-renderer";
|
|
version = "2.0.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/event_camera_renderer-release/archive/release/humble/event_camera_renderer/2.0.0-1.tar.gz";
|
|
name = "2.0.0-1.tar.gz";
|
|
sha256 = "0743373a8b5979c14bd606f559c7b00a45dfe036ff330a6c10fab236724f3895";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|