1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 00:20:36 +03:00
nix-ros-overlay/distros/rolling/qt-gui-py-common/default.nix

27 lines
959 B
Nix
Raw Normal View History

# 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, python-qt-binding }:
buildRosPackage {
pname = "ros-rolling-qt-gui-py-common";
version = "2.7.1-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/rolling/qt_gui_py_common/2.7.1-2.tar.gz";
name = "2.7.1-2.tar.gz";
sha256 = "f8c9a4696fb8eee93651038f05e3a8c52ac4781d079fcf4715fe06e204940d57";
};
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 ];
};
}