1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/dashing/rosidl-generator-dds-idl/default.nix

26 lines
864 B
Nix
Raw Normal View History

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