2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, qt-gui }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-qt-gui-app";
|
2019-11-07 17:17:35 -05:00
|
|
|
version = "0.3.15-r1";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-07 17:17:35 -05:00
|
|
|
url = "https://github.com/ros-gbp/qt_gui_core-release/archive/release/melodic/qt_gui_app/0.3.15-1.tar.gz";
|
|
|
|
name = "0.3.15-1.tar.gz";
|
|
|
|
sha256 = "4a844c1f2f020e5bd924bb25423dc0539013bf9eae996eb55441a60d4a3c2bce";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-03-21 00:14:59 -04:00
|
|
|
propagatedBuildInputs = [ qt-gui ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''qt_gui_app provides the main to start an instance of the integrated graphical user interface provided by qt_gui.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|