mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-19 05:48:38 +03:00
25 lines
920 B
Nix
25 lines
920 B
Nix
|
|
# Copyright 2021 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-foxy-qt-gui-py-common";
|
|
version = "1.1.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/foxy/qt_gui_py_common/1.1.3-1.tar.gz";
|
|
name = "1.1.3-1.tar.gz";
|
|
sha256 = "2ad6a653a25b88d458f7a654ef9f0a122f321f656aac220e703fb135ee455a2a";
|
|
};
|
|
|
|
buildType = "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 ];
|
|
};
|
|
}
|