nix-ros-overlay/distros/foxy/image-common/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

26 lines
961 B
Nix

# Copyright 2023 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.4.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/image_common-release/archive/release/foxy/image_common/2.4.0-1.tar.gz";
name = "2.4.0-1.tar.gz";
sha256 = "869d51bb9e5a490d6f22ea6355ea4db8a96e29c3a8caedbf4183222759963d38";
};
buildType = "ament_cmake";
buildInputs = [ 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 ];
};
}