# Copyright 2023 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-lint-auto, ament-lint-common, python3Packages, pythonPackages, rosidl-adapter }: buildRosPackage { pname = "ros-rolling-rosidl-parser"; version = "4.4.2-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/rosidl-release/archive/release/rolling/rosidl_parser/4.4.2-1.tar.gz"; name = "4.4.2-1.tar.gz"; sha256 = "2d3844aa10d5483efd20ab8e8b04b408f5e1f2aa44747d9d3ab34730ab6cb028"; }; buildType = "ament_cmake"; buildInputs = [ ament-cmake ]; checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common pythonPackages.pytest ]; propagatedBuildInputs = [ python3Packages.lark rosidl-adapter ]; nativeBuildInputs = [ ament-cmake ]; meta = { description = ''The parser for `.idl` ROS interface files.''; license = with lib.licenses; [ asl20 ]; }; }