mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-26 00:25:33 +03:00
27 lines
1.2 KiB
Nix
27 lines
1.2 KiB
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-pytest, ament-cmake-ros, boost, ament-lint-common, sensor-msgs, ament-cmake-gtest, python-cmake-module, python3Packages, ament-index-python, ament-lint-auto, opencv3 }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-cv-bridge";
|
|
version = "2.1.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/vision_opencv-release/archive/release/dashing/cv_bridge/2.1.2-1.tar.gz";
|
|
name = "2.1.2-1.tar.gz";
|
|
sha256 = "a2ea40ef8b0826917ff9994b9411ab0999302bf1ac025d0bb07e2d8488e62551";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ python3Packages.numpy opencv3 boost sensor-msgs ];
|
|
checkInputs = [ ament-cmake-pytest python3Packages.opencv3 ament-lint-common ament-cmake-gtest ament-lint-auto ];
|
|
propagatedBuildInputs = [ boost sensor-msgs ament-index-python python3Packages.numpy opencv3 ];
|
|
nativeBuildInputs = [ python-cmake-module ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''This contains CvBridge, which converts between ROS2
|
|
Image messages and OpenCV images.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|