1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

regenerate all distros, Fri Jun 12 18:02:43 2020

This commit is contained in:
Ben Wolsieffer 2020-06-12 18:02:43 -04:00
parent 2387d4135a
commit e68c29e498
434 changed files with 11020 additions and 92 deletions

View file

@ -0,0 +1,25 @@
# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, qt-gui, qt-gui-cpp, qt5, rclcpp }:
buildRosPackage {
pname = "ros-foxy-rqt-gui-cpp";
version = "1.0.6-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rqt-release/archive/release/foxy/rqt_gui_cpp/1.0.6-1.tar.gz";
name = "1.0.6-1.tar.gz";
sha256 = "a1fdef3ea59c90b09152ed4603943a05ad7aaaf2dcea62f57cbf87a6e56fdbac";
};
buildType = "ament_cmake";
buildInputs = [ qt5.qtbase ];
propagatedBuildInputs = [ qt-gui qt-gui-cpp rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''rqt_gui_cpp enables GUI plugins to use the C++ client library for ROS.'';
license = with lib.licenses; [ bsdOriginal ];
};
}