mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
25 lines
789 B
Nix
25 lines
789 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-humble-swri-opencv-util";
|
|
version = "3.6.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/marti_common-release/archive/release/humble/swri_opencv_util/3.6.1-1.tar.gz";
|
|
name = "3.6.1-1.tar.gz";
|
|
sha256 = "a268102e5476f63ed4bd3e6df0aea5331dc42ae7d519ecf61846eeb4e90640a3";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|