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

26 lines
948 B
Nix

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