mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
844 B
Nix
24 lines
844 B
Nix
|
|
# Copyright 2021 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.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/qt_gui_core-release/archive/release/melodic/qt_gui_py_common/0.4.2-1.tar.gz";
|
|
name = "0.4.2-1.tar.gz";
|
|
sha256 = "4fec98db01f50771f764be8e101246648724a6383feaaef5eb13b3b9bf91d253";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ python-qt-binding pythonPackages.rospkg ];
|
|
nativeBuildInputs = [ catkin pythonPackages.setuptools ];
|
|
|
|
meta = {
|
|
description = ''qt_gui_py_common provides common functionality for GUI plugins written in Python.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|