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/foxy/vision-opencv/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

25 lines
867 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, cv-bridge, image-geometry }:
buildRosPackage {
pname = "ros-foxy-vision-opencv";
version = "3.0.7-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/vision_opencv-release/archive/release/foxy/vision_opencv/3.0.7-1.tar.gz";
name = "3.0.7-1.tar.gz";
sha256 = "a7ea35bf44556cf97af1ce3acba29c669cb25674b5eaadb9926b05d61e7108d2";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ cv-bridge image-geometry ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Packages for interfacing ROS2 with OpenCV, a library of programming functions for real time computer vision.'';
license = with lib.licenses; [ asl20 bsdOriginal ];
};
}