mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-19 13:48:39 +03:00
28 lines
1.1 KiB
Nix
28 lines
1.1 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, tinyxml2-vendor, ament-cmake-pytest, pluginlib, ament-cmake, qt-gui, qt5, pkg-config, python-qt-binding }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-eloquent-qt-gui-cpp";
|
||
|
version = "1.0.7-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/eloquent/qt_gui_cpp/1.0.7-1.tar.gz";
|
||
|
name = "1.0.7-1.tar.gz";
|
||
|
sha256 = "d893e98420d1ab751478aa4a260472ae456e157a329c21d891124f8b2c57e928";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ tinyxml2-vendor pluginlib qt5.qtbase pkg-config python-qt-binding ];
|
||
|
checkInputs = [ ament-cmake-pytest ];
|
||
|
propagatedBuildInputs = [ pluginlib tinyxml2-vendor qt-gui ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
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 = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|