mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
24 lines
901 B
Nix
24 lines
901 B
Nix
|
|
# 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.4-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/jazzy/rosidl_cli/4.6.4-1.tar.gz";
|
|
name = "4.6.4-1.tar.gz";
|
|
sha256 = "2895fe7046b6a75b0fca755d14e976cb9b892b334214f60be2ffbdea06cf2d8c";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|