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/camera-calibration-parsers/default.nix

26 lines
1 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, rclcpp, sensor-msgs, yaml-cpp-vendor }:
buildRosPackage {
pname = "ros-rolling-camera-calibration-parsers";
version = "6.1.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/image_common-release/archive/release/rolling/camera_calibration_parsers/6.1.0-1.tar.gz";
name = "6.1.0-1.tar.gz";
sha256 = "9e8ff939d3adcb1baa9644de22952f733c2133e078ae224dd0fc091127cfefd9";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-ros ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ rclcpp 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 ];
};
}