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/foxy/rosidl-parser/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

26 lines
960 B
Nix

# 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-foxy-rosidl-parser";
version = "1.3.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/foxy/rosidl_parser/1.3.1-1.tar.gz";
name = "1.3.1-1.tar.gz";
sha256 = "c95516fff281942d6c299973c0ea15481ccf5701ba9a1b6cbe6dd2e20647b8bf";
};
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 ROS interface files.'';
license = with lib.licenses; [ asl20 ];
};
}