mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
818 B
Nix
24 lines
818 B
Nix
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, python-qt-binding, pythonPackages }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-qt-gui-py-common";
|
|
version = "0.4.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/qt_gui_core-release/archive/release/melodic/qt_gui_py_common/0.4.0-1.tar.gz";
|
|
name = "0.4.0-1.tar.gz";
|
|
sha256 = "b7071d863395099b3cd984ba2ea710a40ce50844159385989f2ee2817100e41b";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ python-qt-binding pythonPackages.rospkg ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''qt_gui_py_common provides common functionality for GUI plugins written in Python.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|