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/rolling/spinnaker-synchronized-camera-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-black, ament-cmake-clang-format, ament-lint-auto, ament-lint-common, rclcpp, rclcpp-components, spinnaker-camera-driver }:
buildRosPackage {
pname = "ros-rolling-spinnaker-synchronized-camera-driver";
version = "3.0.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/flir_camera_driver-release/archive/release/rolling/spinnaker_synchronized_camera_driver/3.0.0-1.tar.gz";
name = "3.0.0-1.tar.gz";
sha256 = "4e677657f505c0619f7ef200e500f5cb3f8f15e3c903d974fdb7a15d6108f8be";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-black ament-cmake-clang-format ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ rclcpp rclcpp-components spinnaker-camera-driver ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "ROS2 driver for synchronized flir cameras using the Spinnaker SDK";
license = with lib.licenses; [ "Apache-2" ];
};
}