2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-09-05 22:48:11 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, rosidl-actions, python3Packages, rosidl-parser, ament-cmake-python, ament-lint-auto }:
|
2019-09-04 17:11:04 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-crystal-rosidl-cmake";
|
|
|
|
version = "0.6.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/ros2-gbp/rosidl-release/archive/release/crystal/rosidl_cmake/0.6.3-0.tar.gz;
|
|
|
|
sha256 = "511f4f0f1635d02c087d46fdb566d7a176bf94d1be85488a8764a9c93f706368";
|
|
|
|
};
|
|
|
|
|
2019-09-05 22:48:11 -04:00
|
|
|
buildType = "ament_cmake";
|
2019-09-04 17:11:04 -04:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2019-09-05 22:48:11 -04:00
|
|
|
propagatedBuildInputs = [ rosidl-actions ament-cmake python3Packages.empy rosidl-parser ];
|
2019-09-04 17:11:04 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake-python ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The CMake functionality to invoke code generation for ROS interface files.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|