mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
985 B
Nix
25 lines
985 B
Nix
|
|
# 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-humble-robot-calibration-msgs";
|
|
version = "0.8.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/robot_calibration-release/archive/release/humble/robot_calibration_msgs/0.8.2-1.tar.gz";
|
|
name = "0.8.2-1.tar.gz";
|
|
sha256 = "9e85312817609b7d7b855e0be032ccd614f3301afc5f2248913a9836161ecb1c";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|