1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/dashing/teleop-twist-keyboard/default.nix
2019-11-07 17:46:51 -05:00

25 lines
877 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-flake8, rclpy, ament-pep257, ament-copyright, geometry-msgs }:
buildRosPackage {
pname = "ros-dashing-teleop-twist-keyboard";
version = "2.3.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/teleop_twist_keyboard-release/archive/release/dashing/teleop_twist_keyboard/2.3.1-1.tar.gz";
name = "2.3.1-1.tar.gz";
sha256 = "37f237ea42f3b44929634a80dc13ceb93bd6e27931f5ff3972cd54c37b034fb5";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ];
propagatedBuildInputs = [ rclpy geometry-msgs ];
meta = {
description = ''A robot-agnostic teleoperation node to convert keyboard commands to Twist
messages.'';
license = with lib.licenses; [ bsd2 ];
};
}