mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 17:54:49 +03:00
24 lines
796 B
Nix
24 lines
796 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-lint-auto, ament-lint-common, qt-gui, rqt-gui }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-rqt-gui-py";
|
|
version = "1.6.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rqt-release/archive/release/jazzy/rqt_gui_py/1.6.0-2.tar.gz";
|
|
name = "1.6.0-2.tar.gz";
|
|
sha256 = "f502487543e2727683e5c4d2675a193fadc8bbefdde9f72160aebf6416abb270";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ qt-gui rqt-gui ];
|
|
|
|
meta = {
|
|
description = "rqt_gui_py enables GUI plugins to use the Python client library for ROS.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|