mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
23 lines
800 B
Nix
23 lines
800 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, rqt-gui-py, python-qt-binding, catkin, pythonPackages, rqt-gui, qt-gui, qt-gui-py-common }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-rqt-shell";
|
||
|
version = "0.4.9";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/rqt_shell-release/archive/release/kinetic/rqt_shell/0.4.9-0.tar.gz;
|
||
|
sha256 = "a3c19eb189acd631299f7012f0224e39f1ac2ac76b071f1796606f22619ad2b7";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ rqt-gui-py qt-gui qt-gui-py-common pythonPackages.rospkg rqt-gui python-qt-binding ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''rqt_shell is a Python GUI plugin providing an interactive shell.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|