nix-ros-overlay/distros/foxy/rosidl-runtime-c/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

26 lines
994 B
Nix

# Copyright 2023 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, performance-test-fixture, rcutils, rosidl-typesupport-interface }:
buildRosPackage {
pname = "ros-foxy-rosidl-runtime-c";
version = "1.3.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/foxy/rosidl_runtime_c/1.3.1-1.tar.gz";
name = "1.3.1-1.tar.gz";
sha256 = "52ed2629fc6e8f3030f3f1b0d7d3d86c4b32f439b0253a94e9a69b7e0abf42c3";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-ros ];
checkInputs = [ ament-lint-auto ament-lint-common performance-test-fixture ];
propagatedBuildInputs = [ ament-cmake rcutils rosidl-typesupport-interface ];
nativeBuildInputs = [ ament-cmake ament-cmake-ros ];
meta = {
description = ''Generate the ROS interfaces in C.'';
license = with lib.licenses; [ asl20 ];
};
}