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/crystal/camera-info-manager/default.nix

30 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, sensor-msgs, ament-cmake-ros, ament-lint-common, image-transport, ament-cmake-gtest, rclcpp, camera-calibration-parsers, ament-lint-auto }:
buildRosPackage {
pname = "ros-crystal-camera-info-manager";
version = "2.0.1";
src = fetchurl {
url = "https://github.com/ros2-gbp/image_common-release/archive/release/crystal/camera_info_manager/2.0.1-0.tar.gz";
name = "2.0.1-0.tar.gz";
sha256 = "65a8f9750504734de8a7033629376d64487c7a0467394f8438b92ff98aee89ef";
};
buildType = "ament_cmake";
buildInputs = [ image-transport sensor-msgs rclcpp camera-calibration-parsers ];
checkInputs = [ ament-lint-common ament-cmake-gtest ament-lint-auto ];
propagatedBuildInputs = [ image-transport sensor-msgs rclcpp camera-calibration-parsers ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''This package provides a C++ interface for camera calibration
information. It provides CameraInfo, and handles SetCameraInfo
service requests, saving and restoring the camera calibration
data.'';
license = with lib.licenses; [ bsdOriginal ];
};
}