nix-ros-overlay/distros/humble/ros2cli-common-extensions/default.nix

26 lines
1.2 KiB
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, launch-xml, launch-yaml, ros2action, ros2cli, ros2component, ros2doctor, ros2interface, ros2launch, ros2lifecycle, ros2multicast, ros2node, ros2param, ros2pkg, ros2run, ros2service, ros2topic, sros2 }:
buildRosPackage {
pname = "ros-humble-ros2cli-common-extensions";
version = "0.1.1-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2cli_common_extensions-release/archive/release/humble/ros2cli_common_extensions/0.1.1-4.tar.gz";
name = "0.1.1-4.tar.gz";
sha256 = "2fefe07f49de32f9d463eba48bcd825b52cb91585084a633db0109b44f3e7c4f";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ launch-xml launch-yaml ros2action ros2cli ros2component ros2doctor ros2interface ros2launch ros2lifecycle ros2multicast ros2node ros2param ros2pkg ros2run ros2service ros2topic sros2 ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Meta package for ros2cli common extensions";
license = with lib.licenses; [ asl20 ];
};
}