1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/foxy/rosidl-runtime-c/default.nix
2020-08-24 18:45:07 -04:00

25 lines
877 B
Nix

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