2020-05-23 15:15:06 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, actionlib, actionlib-msgs, catkin, message-generation, message-runtime, roscpp, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-actionlib-tutorials";
|
2020-08-24 18:45:07 -04:00
|
|
|
version = "0.2.0-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-08-24 18:45:07 -04:00
|
|
|
url = "https://github.com/ros-gbp/common_tutorials-release/archive/release/noetic/actionlib_tutorials/0.2.0-1.tar.gz";
|
|
|
|
name = "0.2.0-1.tar.gz";
|
|
|
|
sha256 = "ed23df795555dc2032041aaaf30d85adc0856aef3e5a02fbaa3010229eb2b200";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ actionlib-msgs catkin message-generation std-msgs ];
|
2020-05-23 15:15:06 -04:00
|
|
|
propagatedBuildInputs = [ actionlib message-runtime roscpp ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The actionlib_tutorials package";
|
2020-05-23 15:15:06 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|