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/jazzy/swri-image-util/default.nix

27 lines
1.3 KiB
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-cpp, boost, camera-calibration-parsers, cv-bridge, eigen, geometry-msgs, image-geometry, image-transport, message-filters, nav-msgs, pkg-config, rclcpp, rclcpp-components, rclpy, std-msgs, swri-geometry-util, swri-math-util, swri-opencv-util, swri-roscpp, tf2 }:
buildRosPackage {
pname = "ros-jazzy-swri-image-util";
version = "3.7.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/marti_common-release/archive/release/jazzy/swri_image_util/3.7.3-1.tar.gz";
name = "3.7.3-1.tar.gz";
sha256 = "511eb6ea244395d0a377cab44ec8bc3b24a0f71f1cfee5906f95e05a45732a3e";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake pkg-config ];
checkInputs = [ ament-cmake-gtest ];
propagatedBuildInputs = [ ament-index-cpp boost camera-calibration-parsers cv-bridge eigen geometry-msgs image-geometry image-transport message-filters nav-msgs rclcpp rclcpp-components rclpy std-msgs swri-geometry-util swri-math-util swri-opencv-util swri-roscpp tf2 ];
nativeBuildInputs = [ ament-cmake pkg-config ];
meta = {
description = "A package of commonly image manipulation utilities.";
license = with lib.licenses; [ bsdOriginal ];
};
}