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

regenerate all distros, Fri Nov 24 13:11:26 2023

This commit is contained in:
Superflore 2023-11-24 13:11:26 +00:00 committed by Ben Wolsieffer
parent 7a1f3e4578
commit 42cae93f39
733 changed files with 4572 additions and 2650 deletions

View file

@ -0,0 +1,26 @@
# Copyright 2023 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-iron-event-camera-codecs";
version = "1.2.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/event_camera_codecs-release/archive/release/iron/event_camera_codecs/1.2.2-1.tar.gz";
name = "1.2.2-1.tar.gz";
sha256 = "9e7da24cd13ba0483a6b804648298020fc7eb41f5e70bdfe45abc5ff759676a3";
};
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 ];
};
}