1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-26 00:25:33 +03:00
nix-ros-overlay/dashing/rqt-gui/default.nix

26 lines
985 B
Nix
Raw Normal View History

# 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 rec {
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";
name = "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 ];
};
}