2022-06-09 18:50:37 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, boost, cv-bridge, swri-math-util }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-swri-opencv-util";
|
2024-09-13 14:15:34 +00:00
|
|
|
version = "3.7.1-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-09-13 14:15:34 +00:00
|
|
|
url = "https://github.com/ros2-gbp/marti_common-release/archive/release/humble/swri_opencv_util/3.7.1-1.tar.gz";
|
|
|
|
name = "3.7.1-1.tar.gz";
|
|
|
|
sha256 = "fe8ec301f39f5b6672fd92b73dad7f3185c3a27b6a8b1cab1c0b5715b8944e51";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake ];
|
2022-06-09 18:50:37 -04:00
|
|
|
propagatedBuildInputs = [ boost cv-bridge swri-math-util ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-09-13 14:15:34 +00:00
|
|
|
description = "A package with commonly used OpenCV functionality.";
|
2022-06-09 18:50:37 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|