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/humble/qt-gui-py-common/default.nix

26 lines
955 B
Nix

# Copyright 2025 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, python-qt-binding }:
buildRosPackage {
pname = "ros-humble-qt-gui-py-common";
version = "2.2.3-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/humble/qt_gui_py_common/2.2.3-2.tar.gz";
name = "2.2.3-2.tar.gz";
sha256 = "38452d3ae6ebf90ba833ba6010cd8aa7d133328c5145e8ffad3f449f3a892f2a";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-index-python python-qt-binding ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "qt_gui_py_common provides common functionality for GUI plugins written in Python.";
license = with lib.licenses; [ bsdOriginal ];
};
}