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/galactic/rosidl-cli/default.nix

24 lines
909 B
Nix

# Copyright 2021 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-galactic-rosidl-cli";
version = "2.2.1-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/galactic/rosidl_cli/2.2.1-2.tar.gz";
name = "2.2.1-2.tar.gz";
sha256 = "594496523a8b30380e1757f666682b02a063cb6998aef7ab13a35cc1a6395f0d";
};
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 ];
};
}