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, cmake-modules, pkg-config, pluginlib, python-qt-binding, python3Packages, qt-gui, qt5, tinyxml }:
|
2020-05-23 15:15:06 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-qt-gui-cpp";
|
2025-04-11 13:54:49 +00:00
|
|
|
version = "0.4.3-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-04-11 13:54:49 +00:00
|
|
|
url = "https://github.com/ros-gbp/qt_gui_core-release/archive/release/noetic/qt_gui_cpp/0.4.3-1.tar.gz";
|
|
|
|
name = "0.4.3-1.tar.gz";
|
|
|
|
sha256 = "6c155334aa32f1a42698dc77616dfb5bc7de62c98419e6aa7e4ee7f00d8056cb";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin cmake-modules pkg-config python-qt-binding python3Packages.setuptools qt5.qtbase ];
|
2020-05-23 15:15:06 -04:00
|
|
|
propagatedBuildInputs = [ pluginlib qt-gui tinyxml ];
|
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_cpp provides the foundation for C++-bindings for qt_gui and creates bindings for every generator available.
|
|
|
|
At least one specific binding must be available in order to use C++-plugins.";
|
2020-05-23 15:15:06 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|