1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/kinetic/rocon-tutorial-msgs/default.nix

24 lines
805 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, message-generation, catkin, rocon-service-pair-msgs, message-runtime }:
buildRosPackage {
pname = "ros-kinetic-rocon-tutorial-msgs";
version = "0.9.0-r1";
src = fetchurl {
url = https://github.com/yujinrobot-release/rocon_msgs-release/archive/release/kinetic/rocon_tutorial_msgs/0.9.0-1.tar.gz;
sha256 = "59acd2d2c212159596c47e7fb6703b19c97446c3c105b08ab7f541f999008b8d";
};
buildInputs = [ message-generation rocon-service-pair-msgs ];
propagatedBuildInputs = [ rocon-service-pair-msgs message-runtime ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Messages used by rocon tutorials.'';
#license = lib.licenses.BSD;
};
}