nix-ros-overlay/distros/foxy/rqt-shell/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

23 lines
840 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, python-qt-binding, python3Packages, qt-gui, qt-gui-py-common, rqt-gui, rqt-gui-py }:
buildRosPackage {
pname = "ros-foxy-rqt-shell";
version = "1.0.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rqt_shell-release/archive/release/foxy/rqt_shell/1.0.2-1.tar.gz";
name = "1.0.2-1.tar.gz";
sha256 = "ddae8c454b782e3cb1f361cef4adcb906c1c5cd7a2a8ef23d20d66f972e03059";
};
buildType = "ament_python";
propagatedBuildInputs = [ python-qt-binding python3Packages.catkin-pkg qt-gui qt-gui-py-common rqt-gui rqt-gui-py ];
meta = {
description = ''rqt_shell is a Python GUI plugin providing an interactive shell.'';
license = with lib.licenses; [ bsdOriginal ];
};
}