1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/jazzy/rosidl-cli/default.nix

25 lines
901 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, python3Packages, pythonPackages }:
buildRosPackage {
pname = "ros-jazzy-rosidl-cli";
version = "4.6.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/jazzy/rosidl_cli/4.6.3-1.tar.gz";
name = "4.6.3-1.tar.gz";
sha256 = "9c7825892599f8625a6d0bea2a8d6f88a417221bb83f1369b3f6a3dcc4d2b3b8";
};
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 ];
};
}