1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/rolling/image-common/default.nix

26 lines
965 B
Nix

# Copyright 2025 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-rolling-image-common";
version = "6.1.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/image_common-release/archive/release/rolling/image_common/6.1.0-1.tar.gz";
name = "6.1.0-1.tar.gz";
sha256 = "881c5d8e274c273ca12c8fe79d0cdad496ba58980410a739a280ac51bb1ecdbe";
};
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 ];
};
}