1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/melodic/uuv-sensor-ros-plugins-msgs/default.nix

23 lines
779 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, message-generation, catkin, message-runtime, geometry-msgs }:
buildRosPackage {
pname = "ros-melodic-uuv-sensor-ros-plugins-msgs";
version = "0.6.10";
src = fetchurl {
url = https://github.com/uuvsimulator/uuv_simulator-release/archive/release/melodic/uuv_sensor_ros_plugins_msgs/0.6.10-0.tar.gz;
sha256 = "11a61e9c1cb05c12af6ecfb2bbb21b0f8d5eea0096eef9299d0eca8f0132b806";
};
propagatedBuildInputs = [ message-runtime geometry-msgs ];
nativeBuildInputs = [ catkin message-generation geometry-msgs ];
meta = {
description = ''The uuv_sensor_ros_plugins_msgs package'';
#license = lib.licenses.Apache-2.0;
};
}