1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 08:31:07 +03:00
nix-ros-overlay/distros/rolling/image-pipeline/default.nix

27 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2024 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-rolling-image-pipeline";
version = "5.0.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/image_pipeline-release/archive/release/rolling/image_pipeline/5.0.0-2.tar.gz";
name = "5.0.0-2.tar.gz";
sha256 = "d6e6196c65704dc6cf4472933cd52d49fb511f01a8822ab8fb6a03b304c3dd00";
};
buildType = "ament_cmake";
buildInputs = [ 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 ];
};
}