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/melodic/roscpp-tutorials/default.nix

25 lines
991 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, rosconsole, catkin, rostime, message-generation, message-runtime, roscpp-serialization, std-msgs, roscpp }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-roscpp-tutorials";
version = "0.9.1";
src = fetchurl {
url = https://github.com/ros-gbp/ros_tutorials-release/archive/release/melodic/roscpp_tutorials/0.9.1-0.tar.gz;
sha256 = "ea926bbb8d417ecfd5116647ffc45ede193fd3d6ad838c89b026560ce56e7987";
};
buildInputs = [ rosconsole roscpp message-generation roscpp-serialization std-msgs rostime ];
propagatedBuildInputs = [ rosconsole roscpp message-runtime roscpp-serialization std-msgs rostime ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''This package attempts to show the features of ROS step-by-step,
including using messages, servers, parameters, etc.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}