mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-12 05:16:30 +03:00
25 lines
879 B
Nix
25 lines
879 B
Nix
|
|
# Copyright 2025 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-noetic-qt-gui-core";
|
|
version = "0.4.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/qt_gui_core-release/archive/release/noetic/qt_gui_core/0.4.2-1.tar.gz";
|
|
name = "0.4.2-1.tar.gz";
|
|
sha256 = "7a166499737a330456941515965c0357b715c1d145c9cc331e6ce6d338b543d9";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ 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 ];
|
|
};
|
|
}
|