mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-19 13:48:39 +03:00
26 lines
1,022 B
Nix
26 lines
1,022 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, rosidl-cmake, ament-lint-common, ament-cmake, ament-lint-auto, ament-cmake-gtest, rosidl-generator-c, test-interface-files, rosidl-parser }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-eloquent-rosidl-generator-cpp";
|
||
|
version = "0.8.1-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/eloquent/rosidl_generator_cpp/0.8.1-1.tar.gz";
|
||
|
name = "0.8.1-1.tar.gz";
|
||
|
sha256 = "8c77afbe3c1d981ecc13b7f7786d763956b2ae17e30769f7999fee0a2f18b964";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
checkInputs = [ rosidl-cmake ament-lint-common ament-lint-auto rosidl-generator-c test-interface-files ament-cmake-gtest ];
|
||
|
propagatedBuildInputs = [ rosidl-parser rosidl-generator-c rosidl-cmake ament-cmake ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Generate the ROS interfaces in C++.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|