mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-26 08:35:33 +03:00
25 lines
950 B
Nix
25 lines
950 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-lint-common, rclpy, qt-gui, python3Packages, ament-index-python, ament-lint-auto, python-qt-binding }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-dashing-rqt-gui";
|
||
|
version = "1.0.4-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros2-gbp/rqt-release/archive/release/dashing/rqt_gui/1.0.4-1.tar.gz;
|
||
|
sha256 = "0c1110a3651ffd814e428d67f61884af4090d86d24de8cb4a63e6e886b0fb312";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
buildInputs = [ qt-gui ];
|
||
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
||
|
propagatedBuildInputs = [ python3Packages.catkin-pkg rclpy qt-gui ament-index-python python-qt-binding ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''rqt_gui provides the main to start an instance of the ROS integrated graphical user interface provided by qt_gui.'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|