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/kinetic/turtlebot3-applications-msgs/default.nix
2019-04-06 20:59:50 -04:00

23 lines
897 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, sensor-msgs, catkin, message-generation, message-runtime, std-msgs }:
buildRosPackage {
pname = "ros-kinetic-turtlebot3-applications-msgs";
version = "1.0.0";
src = fetchurl {
url = https://github.com/ROBOTIS-GIT-release/turtlebot3_applications_msgs-release/archive/release/kinetic/turtlebot3_applications_msgs/1.0.0-0.tar.gz;
sha256 = "d95bcf3f16e4f51a49a53708b680fe6635f2e50434d8c9282bdc83204ec3b926";
};
buildInputs = [ std-msgs sensor-msgs message-generation ];
propagatedBuildInputs = [ std-msgs sensor-msgs message-runtime ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Message and service types: custom messages and services for TurtleBot3 Applications packages'';
#license = lib.licenses.Apache 2.0;
};
}