1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/melodic/qt-gui-core/default.nix

24 lines
855 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, qt-dotgraph, qt-gui, qt-gui-app, qt-gui-cpp, qt-gui-py-common }:
buildRosPackage {
pname = "ros-melodic-qt-gui-core";
version = "0.4.2-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/qt_gui_core-release/archive/release/melodic/qt_gui_core/0.4.2-1.tar.gz";
name = "0.4.2-1.tar.gz";
sha256 = "122f12c7245807826c39fc1e452a828b0d055f3712a629ed98077291b0383e98";
};
buildType = "catkin";
propagatedBuildInputs = [ qt-dotgraph qt-gui qt-gui-app qt-gui-cpp qt-gui-py-common ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Integration of the ROS package system and ROS-specific plugins for a Qt-based GUI.'';
license = with lib.licenses; [ bsdOriginal ];
};
}