2020-05-23 15:15:06 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-06-24 01:11:26 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, python3Packages, qt-gui }:
|
2020-05-23 15:15:06 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-qt-gui-app";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "0.4.5-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros-gbp/qt_gui_core-release/archive/release/noetic/qt_gui_app/0.4.5-1.tar.gz";
|
|
|
|
name = "0.4.5-1.tar.gz";
|
|
|
|
sha256 = "b5f9e862e1745292dad611028e4a91647ee1f4925ef03c82555db6f0a7b2f8a6";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin python3Packages.setuptools ];
|
2020-05-23 15:15:06 -04:00
|
|
|
propagatedBuildInputs = [ qt-gui ];
|
2020-06-24 01:11:26 -04:00
|
|
|
nativeBuildInputs = [ catkin python3Packages.setuptools ];
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "qt_gui_app provides the main to start an instance of the integrated graphical user interface provided by qt_gui.";
|
2020-05-23 15:15:06 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|