mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-09 17:42:22 +03:00

Some checks failed
Build / build (humble, aarch64-linux) (push) Has been cancelled
Build / build (humble, x86_64-linux) (push) Has been cancelled
Build / build (jazzy, aarch64-linux) (push) Has been cancelled
Build / build (jazzy, x86_64-linux) (push) Has been cancelled
Build / build (noetic, aarch64-linux) (push) Has been cancelled
Build / build (noetic, x86_64-linux) (push) Has been cancelled
Build / build (rolling, aarch64-linux) (push) Has been cancelled
Build / build (rolling, x86_64-linux) (push) Has been cancelled
25 lines
1.1 KiB
Nix
25 lines
1.1 KiB
Nix
|
|
# Copyright 2025 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, rclpy, sensor-msgs, std-srvs }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-camera-calibration";
|
|
version = "3.0.8-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/image_pipeline-release/archive/release/humble/camera_calibration/3.0.8-1.tar.gz";
|
|
name = "3.0.8-1.tar.gz";
|
|
sha256 = "5be33d27e683aa42de329d68410056db3168ecd914fb5efe608652490d333790";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest python3Packages.requests ];
|
|
propagatedBuildInputs = [ cv-bridge image-geometry message-filters python3Packages.semver 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 ];
|
|
};
|
|
}
|