1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/melodic/qt-gui-py-common/default.nix

25 lines
844 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, python-qt-binding, pythonPackages }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-qt-gui-py-common";
version = "0.4.2-r1";
2019-03-21 00:14:59 -04:00
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";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ python-qt-binding pythonPackages.rospkg ];
nativeBuildInputs = [ catkin pythonPackages.setuptools ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''qt_gui_py_common provides common functionality for GUI plugins written in Python.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}