1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/rolling/rosidl-parser/default.nix

26 lines
971 B
Nix

# Copyright 2024 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.9.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/rolling/rosidl_parser/4.9.0-1.tar.gz";
name = "4.9.0-1.tar.gz";
sha256 = "a92cb4f8b8b8d6f5d816da4276e48966caf3294a048e4299b1640aa87266f4c8";
};
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 ];
};
}