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-opencv-util/default.nix

25 lines
787 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, boost, cv-bridge, swri-math-util }:
buildRosPackage {
pname = "ros-jazzy-swri-opencv-util";
version = "3.6.1-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/marti_common-release/archive/release/jazzy/swri_opencv_util/3.6.1-3.tar.gz";
name = "3.6.1-3.tar.gz";
sha256 = "5ed505a4107a94e6ace96c70af3cd7ac51a71dd0a008b12bc43a325d8adfde2e";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ boost cv-bridge swri-math-util ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "swri_opencv_util";
license = with lib.licenses; [ bsdOriginal ];
};
}