mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 16:40:36 +03:00
23 lines
1.1 KiB
Nix
23 lines
1.1 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, turtlesim, rosconsole, actionlib-msgs, catkin, message-generation, message-runtime, actionlib, std-msgs, angles, roscpp, geometry-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-turtle-actionlib";
|
||
|
version = "0.1.10";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/common_tutorials-release/archive/release/kinetic/turtle_actionlib/0.1.10-0.tar.gz;
|
||
|
sha256 = "5ec375f3e1c2041fe01e5aede68707d17aa23c97c8e0648469be7f25b2c7c953";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ turtlesim rosconsole actionlib-msgs message-runtime actionlib std-msgs angles roscpp geometry-msgs ];
|
||
|
nativeBuildInputs = [ turtlesim rosconsole actionlib-msgs catkin message-generation actionlib std-msgs angles roscpp geometry-msgs ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''turtle_actionlib demonstrates how to write an action server and client with the turtlesim. The shape_server provides and action interface for drawing regular polygons with the turtlesim.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|