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

26 lines
903 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2020 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, actionlib-msgs, catkin, geometry-msgs, message-generation, message-runtime, sensor-msgs, std-msgs }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-robot-calibration-msgs";
version = "0.6.3-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/ros-gbp/robot_calibration-release/archive/release/melodic/robot_calibration_msgs/0.6.3-1.tar.gz";
name = "0.6.3-1.tar.gz";
sha256 = "8aa932a83ec1488c67647070770efd2241c5c652f44aa9b7dd76bc1e34182b4a";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
buildInputs = [ message-generation ];
propagatedBuildInputs = [ actionlib-msgs geometry-msgs message-runtime sensor-msgs std-msgs ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Messages for calibrating a robot'';
license = with lib.licenses; [ asl20 ];
2019-03-21 00:14:59 -04:00
};
}