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

26 lines
999 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, message-generation, turtlesim, actionlib, catkin, smach-ros, asmach, actionlib-msgs, rospy }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-asmach-tutorials";
version = "1.0.16-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/pr2-gbp/linux_networking-release/archive/release/melodic/asmach_tutorials/1.0.16-1.tar.gz";
name = "1.0.16-1.tar.gz";
sha256 = "d4a5d35e1424c9a9e17f9a66b1bbea3de63f71d037df9cc932cf28f62c00f69e";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
buildInputs = [ turtlesim actionlib smach-ros asmach actionlib-msgs rospy message-generation ];
propagatedBuildInputs = [ turtlesim actionlib smach-ros asmach actionlib-msgs rospy ];
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.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}