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/dashing/rqt-reconfigure/default.nix

25 lines
1 KiB
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-xmllint, ament-flake8, rclpy, rqt-gui, qt-gui-py-common, rqt-console, python3Packages, ament-copyright, rqt-py-common, ament-index-python, python-qt-binding }:
buildRosPackage {
pname = "ros-dashing-rqt-reconfigure";
version = "1.0.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rqt_reconfigure-release/archive/release/dashing/rqt_reconfigure/1.0.4-1.tar.gz";
name = "1.0.4-1.tar.gz";
sha256 = "d80e45536bbb564a3c5246056446beccff64770183b1801243fc20f3ffe07616";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-xmllint ament-flake8 ];
propagatedBuildInputs = [ rqt-gui-py rclpy rqt-gui python3Packages.pyyaml qt-gui-py-common rqt-console ament-index-python rqt-py-common python-qt-binding ];
meta = {
description = ''This rqt plugin provides a way to view and edit parameters on nodes.'';
license = with lib.licenses; [ bsdOriginal asl20 ];
};
}