mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 02:34:50 +03:00
23 lines
877 B
Nix
23 lines
877 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-index-python, geometry-msgs, python-qt-binding, rclpy, rqt-gui, rqt-gui-py }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-rqt-robot-steering";
|
|
version = "1.0.1-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rqt_robot_steering-release/archive/release/rolling/rqt_robot_steering/1.0.1-2.tar.gz";
|
|
name = "1.0.1-2.tar.gz";
|
|
sha256 = "529683f9f76f6677da4978b4ed1dbd13443aba384472e1ef0a5fa12e8bf49506";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
propagatedBuildInputs = [ ament-index-python geometry-msgs python-qt-binding rclpy rqt-gui rqt-gui-py ];
|
|
|
|
meta = {
|
|
description = "rqt_robot_steering provides a GUI plugin for steering a robot using Twist messages.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|