mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-16 04:28:39 +03:00
23 lines
948 B
Nix
23 lines
948 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, cmake-modules, pluginlib, catkin, tinyxml, pkg-config, qt-gui, qt5, python-qt-binding }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-qt-gui-cpp";
|
|
version = "0.3.11";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/qt_gui_core-release/archive/release/melodic/qt_gui_cpp/0.3.11-0.tar.gz;
|
|
sha256 = "fbbba01e82d3c63dfeab0fdc9caac8916de97295a8e8c08e715dc965e69dc545";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pluginlib qt-gui tinyxml ];
|
|
nativeBuildInputs = [ qt5.qtbase cmake-modules pluginlib catkin python-qt-binding tinyxml pkg-config ];
|
|
|
|
meta = {
|
|
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.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|