1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/jazzy/rc-genicam-driver/default.nix

27 lines
1.1 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-cppcheck, ament-cmake-xmllint, ament-lint-auto, diagnostic-updater, image-transport, rc-common-msgs, rc-genicam-api, rclcpp, rclcpp-components, sensor-msgs, stereo-msgs }:
buildRosPackage {
pname = "ros-jazzy-rc-genicam-driver";
version = "0.3.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rc_genicam_driver_ros2-release/archive/release/jazzy/rc_genicam_driver/0.3.1-1.tar.gz";
name = "0.3.1-1.tar.gz";
sha256 = "771468d9a7b16cecfb8b54bd9aac7758f7b5aa4e1f46f0cda7c2a5d3b725f121";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-cppcheck ament-cmake-xmllint ament-lint-auto ];
propagatedBuildInputs = [ diagnostic-updater image-transport rc-common-msgs rc-genicam-api rclcpp rclcpp-components sensor-msgs stereo-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Driver for rc_visard and rc_cube from Roboception GmbH";
license = with lib.licenses; [ bsdOriginal ];
};
}