1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-15 22:50:46 +03:00
nix-ros-overlay/eloquent/qt-gui-app/default.nix

25 lines
925 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-lint-common, ament-cmake, qt-gui, ament-index-python, ament-lint-auto }:
buildRosPackage {
pname = "ros-eloquent-qt-gui-app";
version = "1.0.7-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/eloquent/qt_gui_app/1.0.7-1.tar.gz";
name = "1.0.7-1.tar.gz";
sha256 = "adbda60c1b7d7be9bd6011e23959216862b49ba43eb3db7c7e88ed00d1991163";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-common ament-lint-auto ];
propagatedBuildInputs = [ qt-gui ament-index-python ];
nativeBuildInputs = [ ament-cmake ];
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 ];
};
}