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,31 @@
# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, python-cmake-module, python-qt-binding, qt-gui, qt5, rclpy, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-foxy-rqt-py-common";
version = "1.0.6-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rqt-release/archive/release/foxy/rqt_py_common/1.0.6-1.tar.gz";
name = "1.0.6-1.tar.gz";
sha256 = "8865519826e3e9d61d7c12a03a4d190d21a2c35e904f83b210643ad164af6cd0";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-pytest python-cmake-module ];
propagatedBuildInputs = [ python-qt-binding qt-gui qt5.qtbase rclpy rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''rqt_py_common provides common functionality for rqt plugins written in Python.
Despite no plugin is provided, this package is part of the rqt_common_plugins
repository to keep refactoring generic functionality from these common plugins
into this package as easy as possible.
Functionality included in this package should cover generic ROS concepts and
should not introduce any special dependencies beside "ros_base".'';
license = with lib.licenses; [ bsdOriginal ];
};
}