1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/galactic/image-pipeline/default.nix

26 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-lint-cmake, ament-cmake-xmllint, ament-lint-auto, camera-calibration, depth-image-proc, image-proc, image-publisher, image-rotate, image-view, stereo-image-proc }:
buildRosPackage {
pname = "ros-galactic-image-pipeline";
version = "2.2.1-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/image_pipeline-release/archive/release/galactic/image_pipeline/2.2.1-3.tar.gz";
name = "2.2.1-3.tar.gz";
sha256 = "19b79f1ef1a67a9aa992cd2976b0d869b0b25d7957d46bce95d9c32a6533ce94";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-lint-cmake ament-cmake-xmllint ament-lint-auto ];
propagatedBuildInputs = [ camera-calibration depth-image-proc image-proc image-publisher image-rotate image-view stereo-image-proc ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''image_pipeline fills the gap between getting raw images from a camera driver and higher-level vision processing.'';
license = with lib.licenses; [ bsdOriginal ];
};
}