# Copyright 2021 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, camera-calibration-parsers, camera-info-manager, image-transport }: buildRosPackage { pname = "ros-foxy-image-common"; version = "2.3.0-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/image_common-release/archive/release/foxy/image_common/2.3.0-1.tar.gz"; name = "2.3.0-1.tar.gz"; sha256 = "fc943f0730fe6f9a54fa8ab742b7ccd990e18b1763bb248217226e8acb2f7bdb"; }; buildType = "ament_cmake"; checkInputs = [ ament-lint-auto ament-lint-common ]; propagatedBuildInputs = [ camera-calibration-parsers camera-info-manager image-transport ]; nativeBuildInputs = [ ament-cmake ]; meta = { description = ''Common code for working with images in ROS.''; license = with lib.licenses; [ bsdOriginal ]; }; }