mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
942 B
Nix
25 lines
942 B
Nix
|
|
# Copyright 2020 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-eloquent-rosidl-parser";
|
|
version = "0.8.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/eloquent/rosidl_parser/0.8.3-1.tar.gz";
|
|
name = "0.8.3-1.tar.gz";
|
|
sha256 = "7ca0f5d3301b092b2eb93b97332d4cb7347dbb1718deb863f47aad603bf5b464";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common pythonPackages.pytest ];
|
|
propagatedBuildInputs = [ python3Packages.lark-parser rosidl-adapter ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''The parser for ROS interface files.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|