1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/melodic/qt-gui-app/default.nix

24 lines
777 B
Nix

# Copyright 2020 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";
version = "0.4.0-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/qt_gui_core-release/archive/release/melodic/qt_gui_app/0.4.0-1.tar.gz";
name = "0.4.0-1.tar.gz";
sha256 = "575d3d34a7c88dea8843b67b44e73ed44c87288f7c846d28110fd57d064bda7f";
};
buildType = "catkin";
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.'';
license = with lib.licenses; [ bsdOriginal ];
};
}