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, actionlib-msgs, catkin, smach-ros, message-generation, asmach, actionlib, rospy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-asmach-tutorials";
|
2019-04-26 08:49:29 -04:00
|
|
|
version = "1.0.13-r2";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/pr2-gbp/linux_networking-release/archive/release/melodic/asmach_tutorials/1.0.13-2.tar.gz";
|
|
|
|
name = "1.0.13-2.tar.gz";
|
2019-04-26 08:49:29 -04:00
|
|
|
sha256 = "ca0024ddfd9f62f4c76291300d9cf50e15fbc87e64af3823255db33e4285792e";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-05-05 02:02:52 -04:00
|
|
|
buildInputs = [ turtlesim actionlib-msgs smach-ros message-generation asmach actionlib rospy ];
|
|
|
|
propagatedBuildInputs = [ turtlesim actionlib-msgs smach-ros actionlib asmach rospy ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package containes numerous examples of how to use SMACH. See the examples directory.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|