1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/distros/rolling/swri-opencv-util/default.nix

26 lines
791 B
Nix
Raw Normal View History

# 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-rolling-swri-opencv-util";
version = "3.6.1-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/marti_common-release/archive/release/rolling/swri_opencv_util/3.6.1-2.tar.gz";
name = "3.6.1-2.tar.gz";
sha256 = "620df709e454105d075bde40543775fb4207531466fa1a2f7d593a5effe4a6de";
};
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 ];
};
}