1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/foxy/rosidl-generator-dds-idl/default.nix

25 lines
858 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, rosidl-cmake }:
buildRosPackage {
pname = "ros-foxy-rosidl-generator-dds-idl";
version = "0.7.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl_dds-release/archive/release/foxy/rosidl_generator_dds_idl/0.7.1-1.tar.gz";
name = "0.7.1-1.tar.gz";
sha256 = "ae83243db4ffc4f89b8bb1c795650f5555e5dfbdaec43a7adafcbfa576598633";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-cmake rosidl-cmake ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Generate the DDS interfaces for ROS interfaces.'';
license = with lib.licenses; [ asl20 ];
};
}