mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
25 lines
906 B
Nix
25 lines
906 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, actionlib-msgs, catkin, geometry-msgs, message-generation, message-runtime, sensor-msgs, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-noetic-robot-calibration-msgs";
|
|
version = "0.7.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/robot_calibration-release/archive/release/noetic/robot_calibration_msgs/0.7.2-1.tar.gz";
|
|
name = "0.7.2-1.tar.gz";
|
|
sha256 = "b90bf5c93a7c5b955b589a4bd5052b9a2c84741a97090d04dd23623c30cc4120";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ catkin message-generation ];
|
|
propagatedBuildInputs = [ actionlib-msgs geometry-msgs message-runtime sensor-msgs std-msgs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = "Messages for calibrating a robot";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|