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/iron/robot-calibration-msgs/default.nix

26 lines
981 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, builtin-interfaces, rosidl-default-generators, rosidl-default-runtime, sensor-msgs, std-msgs }:
buildRosPackage {
pname = "ros-iron-robot-calibration-msgs";
version = "0.9.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/robot_calibration-release/archive/release/iron/robot_calibration_msgs/0.9.2-1.tar.gz";
name = "0.9.2-1.tar.gz";
sha256 = "5f78ed131aa4bfbe8fc5d088df8969b5dcc4ab781e6bb61e17332bf5a211a364";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ action-msgs builtin-interfaces rosidl-default-generators rosidl-default-runtime sensor-msgs std-msgs ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = "Messages for calibrating a robot";
license = with lib.licenses; [ asl20 ];
};
}