mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 17:54:49 +03:00
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-jazzy-camera-calibration";
|
|
version = "5.0.9-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/image_pipeline-release/archive/release/jazzy/camera_calibration/5.0.9-1.tar.gz";
|
|
name = "5.0.9-1.tar.gz";
|
|
sha256 = "9856cc2acbd3581f13cea009fcfa188376aa21296d64f6049596e0191dc68aae";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest python3Packages.requests ];
|
|
propagatedBuildInputs = [ cv-bridge image-geometry message-filters python3Packages.opencv4 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 ];
|
|
};
|
|
}
|