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/melodic/rqt-shell/default.nix

25 lines
872 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rqt-gui, qt-gui-py-common, pythonPackages, catkin, rqt-gui-py, qt-gui, python-qt-binding }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-rqt-shell";
version = "0.4.9";
src = fetchurl {
url = "https://github.com/ros-gbp/rqt_shell-release/archive/release/melodic/rqt_shell/0.4.9-0.tar.gz";
name = "0.4.9-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "522e34ae2cf5e4af2d14805e70767f394ec88043033a1c6e44324ae58a139001";
};
buildType = "catkin";
propagatedBuildInputs = [ rqt-gui qt-gui-py-common pythonPackages.rospkg rqt-gui-py qt-gui python-qt-binding ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''rqt_shell is a Python GUI plugin providing an interactive shell.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}