1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/crystal/rqt-py-console/default.nix

24 lines
903 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rqt-gui-py, ament-cmake, rclpy, rqt-gui, qt-gui, qt-gui-py-common, ament-index-python, python-qt-binding }:
buildRosPackage {
pname = "ros-crystal-rqt-py-console";
version = "1.0.0-r2";
src = fetchurl {
url = https://github.com/ros2-gbp/rqt_py_console-release/archive/release/crystal/rqt_py_console/1.0.0-2.tar.gz;
sha256 = "2797cbe4f59a613ed53201713ad7a0a3d5f3db5271bca452012500b8ab8130c6";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ rqt-gui-py python-qt-binding rclpy rqt-gui qt-gui ament-index-python qt-gui-py-common ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''rqt_py_console is a Python GUI plugin providing an interactive Python console.'';
license = with lib.licenses; [ bsdOriginal ];
};
}