1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-18 21:38:40 +03:00

regenerate all distros, Thu Jun 9 18:50:37 2022

This commit is contained in:
Ben Wolsieffer 2022-06-09 18:50:37 -04:00
parent aa08119940
commit 1ebd89fabb
1056 changed files with 24850 additions and 671 deletions

View file

@ -0,0 +1,36 @@
# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-lint-auto, ament-lint-common, python3Packages, qt5 }:
buildRosPackage {
pname = "ros-humble-python-qt-binding";
version = "1.1.1-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/python_qt_binding-release/archive/release/humble/python_qt_binding/1.1.1-3.tar.gz";
name = "1.1.1-3.tar.gz";
sha256 = "749f466ebe43e85f8719858eecdac211b682163899711ecf97acd6aaa2818636";
};
buildType = "ament_cmake";
buildInputs = [ qt5.qtbase ];
checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ python3Packages.pyqt5 ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''This stack provides Python bindings for Qt.
There are two providers: pyside and pyqt. PySide2 is available under
the GPL, LGPL and a commercial license. PyQt is released under the GPL.
Both the bindings and tools to build bindings are included from each
available provider. For PySide, it is called "Shiboken". For PyQt,
this is called "SIP".
Also provided is adapter code to make the user's Python code
independent of which binding provider was actually used which makes
it very easy to switch between these.'';
license = with lib.licenses; [ bsdOriginal ];
};
}