2022-06-09 18:50:37 -04:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, rclcpp, rcpputils, sensor-msgs, yaml-cpp-vendor }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-camera-calibration-parsers";
|
2023-08-18 18:31:53 +00:00
|
|
|
version = "3.1.7-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-08-18 18:31:53 +00:00
|
|
|
url = "https://github.com/ros2-gbp/image_common-release/archive/release/humble/camera_calibration_parsers/3.1.7-1.tar.gz";
|
|
|
|
name = "3.1.7-1.tar.gz";
|
|
|
|
sha256 = "dc0609ae321cec0a32997d6439b01742fea6bd5b89e4cbb0c8124b98429ddef9";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake-ros ];
|
2022-06-09 18:50:37 -04:00
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ rclcpp rcpputils sensor-msgs yaml-cpp-vendor ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''camera_calibration_parsers contains routines for reading and writing camera calibration parameters.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|