mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
![]() |
|
||
|
# Copyright 2021 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, rcpputils, sensor-msgs, yaml-cpp-vendor }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-galactic-camera-calibration-parsers";
|
||
|
version = "2.3.0-r3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/image_common-release/archive/release/galactic/camera_calibration_parsers/2.3.0-3.tar.gz";
|
||
|
name = "2.3.0-3.tar.gz";
|
||
|
sha256 = "304399d4455346aa024c6748daa8482ef24069a65cdeab542a748fa72dd34d23";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
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 ];
|
||
|
};
|
||
|
}
|