mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 16:40:36 +03:00
24 lines
945 B
Nix
24 lines
945 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, opencv-candidate, cmake-modules, boost, ecto, catkin, eigen, ecto-opencv, rosunit, ecto-ros }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-ecto-image-pipeline";
|
||
|
version = "0.5.7";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/ecto_image_pipeline-release/archive/release/kinetic/ecto_image_pipeline/0.5.7-0.tar.gz;
|
||
|
sha256 = "9560ea03b3aafe4a085d9c2a590bece99d94fe992bec2f8bb61124a990434d99";
|
||
|
};
|
||
|
|
||
|
checkInputs = [ rosunit ];
|
||
|
propagatedBuildInputs = [ opencv-candidate boost eigen ecto-opencv ecto ecto-ros ];
|
||
|
nativeBuildInputs = [ opencv-candidate cmake-modules boost eigen catkin ecto ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Common tools for image based pipelines. Includes stereo and mono camera drivers, rectification, image sinks, calibration, etc..'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|