mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
![]() |
|
||
|
# Copyright 2020 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, cv-bridge, image-geometry, message-filters, python3Packages, pythonPackages, rclpy, sensor-msgs, std-srvs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-foxy-camera-calibration";
|
||
|
version = "2.1.1-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/image_pipeline-release/archive/release/foxy/camera_calibration/2.1.1-1.tar.gz";
|
||
|
name = "2.1.1-1.tar.gz";
|
||
|
sha256 = "9d6cd1f240821c8e135e6eeb9c171d1507fe43c3c481225e17e28c1cba477f99";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.requests pythonPackages.pytest ];
|
||
|
propagatedBuildInputs = [ cv-bridge image-geometry message-filters rclpy sensor-msgs std-srvs ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''camera_calibration allows easy calibration of monocular or stereo
|
||
|
cameras using a checkerboard calibration target.'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|