2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-lint-auto, ament-lint-common, python3Packages }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-rosidl-adapter";
|
2019-12-09 05:16:46 +00:00
|
|
|
version = "0.7.8-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-09 05:16:46 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/dashing/rosidl_adapter/0.7.8-1.tar.gz";
|
|
|
|
name = "0.7.8-1.tar.gz";
|
|
|
|
sha256 = "adb7550016f0abcfc0e2d01c04373bab25884fbe441ec4ccc798c4ec92cb2ad3";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
2019-12-09 23:36:28 -05:00
|
|
|
checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common ];
|
2019-09-04 17:11:04 -04:00
|
|
|
propagatedBuildInputs = [ python3Packages.empy ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''API and scripts to parse .msg/.srv/.action files and convert them to .idl.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|