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-c/default.nix

26 lines
1,012 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, rosidl-typesupport-interface, ament-lint-auto, ament-cmake-gtest, rosidl-cmake, rosidl-parser, ament-cmake-ros }:
buildRosPackage {
pname = "ros-dashing-rosidl-generator-c";
version = "0.7.5-r1";
src = fetchurl {
url = https://github.com/ros2-gbp/rosidl-release/archive/release/dashing/rosidl_generator_c/0.7.5-1.tar.gz;
sha256 = "c214e86da1e4df694401e1e26edeee147cfe78301701684102f07ed223ce5cfc";
};
buildType = "ament_cmake";
buildInputs = [ rosidl-typesupport-interface ];
checkInputs = [ ament-cmake-gtest ament-lint-auto rosidl-cmake ament-lint-common ];
propagatedBuildInputs = [ rosidl-cmake ament-cmake rosidl-typesupport-interface rosidl-parser ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''Generate the ROS interfaces in C.'';
license = with lib.licenses; [ asl20 ];
};
}