nix-ros-overlay/distros/melodic/asmach-tutorials/default.nix

25 lines
948 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, actionlib, actionlib-msgs, asmach, catkin, message-generation, rospy, smach-ros, turtlesim }:
buildRosPackage {
pname = "ros-melodic-asmach-tutorials";
version = "1.0.16-r1";
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";
};
buildType = "catkin";
buildInputs = [ catkin message-generation ];
propagatedBuildInputs = [ actionlib actionlib-msgs asmach rospy smach-ros turtlesim ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This package containes numerous examples of how to use SMACH. See the examples directory.'';
license = with lib.licenses; [ bsdOriginal ];
};
}