mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
23 lines
923 B
Nix
23 lines
923 B
Nix
|
|
# 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-kinetic-asmach-tutorials";
|
|
version = "1.0.15";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/pr2-gbp/linux_networking-release/archive/release/kinetic/asmach_tutorials/1.0.15-0.tar.gz;
|
|
sha256 = "6f8d206898a3a4c7acb1efd2e357e3aa10708393bf55780fa47685c2a5d916a4";
|
|
};
|
|
|
|
buildInputs = [ turtlesim message-generation actionlib asmach actionlib-msgs rospy smach-ros ];
|
|
propagatedBuildInputs = [ turtlesim actionlib asmach actionlib-msgs rospy smach-ros ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''This package containes numerous examples of how to use SMACH. See the examples directory.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|