mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
947 B
Nix
24 lines
947 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-index-python, ament-lint-auto, ament-lint-common, python-qt-binding, python3Packages, qt-gui, rclpy }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-rqt-gui";
|
|
version = "1.6.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rqt-release/archive/release/jazzy/rqt_gui/1.6.0-2.tar.gz";
|
|
name = "1.6.0-2.tar.gz";
|
|
sha256 = "b59f8563047be0700c5d51554dbb76696417bbb01b7fac7840ce32191ee5fe3d";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ ament-index-python python-qt-binding python3Packages.catkin-pkg qt-gui rclpy ];
|
|
|
|
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 ];
|
|
};
|
|
}
|