mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
821 B
Nix
25 lines
821 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, nodelet, qt-gui, qt-gui-cpp, qt5, roscpp }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-rqt-gui-cpp";
|
|
version = "0.5.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/rqt-release/archive/release/melodic/rqt_gui_cpp/0.5.2-1.tar.gz";
|
|
name = "0.5.2-1.tar.gz";
|
|
sha256 = "2b1a17e25f960b71148a92baab5bfb19d8247788dbef53ec5bc9aa0c1d56832b";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ qt5.qtbase ];
|
|
propagatedBuildInputs = [ nodelet qt-gui qt-gui-cpp roscpp ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''rqt_gui_cpp enables GUI plugins to use the C++ client library for ROS.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|