2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, python3Packages, pythonPackages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-rosidl-cli";
|
2023-07-14 13:38:16 +00:00
|
|
|
version = "4.0.1-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-07-14 13:38:16 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/iron/rosidl_cli/4.0.1-1.tar.gz";
|
|
|
|
name = "4.0.1-1.tar.gz";
|
|
|
|
sha256 = "9f2194ed7ee6e783e32b0601faa15d1bdb5aa234837d610b0a7c93bb831ed69f";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ python3Packages.argcomplete python3Packages.importlib-metadata ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Command line tools for ROS interface generation.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|