1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/dashing/rqt-console/default.nix
2019-12-09 23:36:28 -05:00

24 lines
933 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-index-python, python-qt-binding, rcl-interfaces, rclpy, rqt-gui, rqt-gui-py, rqt-py-common }:
buildRosPackage {
pname = "ros-dashing-rqt-console";
version = "1.1.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rqt_console-release/archive/release/dashing/rqt_console/1.1.0-1.tar.gz";
name = "1.1.0-1.tar.gz";
sha256 = "76504c7586c5247da4313e82120f11ce83199e1496ec3bd6b46c2a35acdd47bf";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ ament-index-python python-qt-binding rcl-interfaces rclpy rqt-gui rqt-gui-py rqt-py-common ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''rqt_console provides a GUI plugin for displaying and filtering ROS messages.'';
license = with lib.licenses; [ bsdOriginal ];
};
}