1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-25 08:15:32 +03:00
nix-ros-overlay/melodic/ros-tutorials/default.nix

24 lines
816 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, turtlesim, roscpp-tutorials, catkin, rospy-tutorials }:
buildRosPackage {
pname = "ros-melodic-ros-tutorials";
version = "0.9.1";
src = fetchurl {
url = https://github.com/ros-gbp/ros_tutorials-release/archive/release/melodic/ros_tutorials/0.9.1-0.tar.gz;
sha256 = "566f9e87ffd41023bf48a504e928de4e837676cfade117ef7c208c89e352fa4a";
};
propagatedBuildInputs = [ turtlesim roscpp-tutorials rospy-tutorials ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''ros_tutorials contains packages that demonstrate various features of ROS,
as well as support packages which help demonstrate those features.'';
#license = lib.licenses.BSD;
};
}