mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 10:44:50 +03:00
24 lines
865 B
Nix
24 lines
865 B
Nix
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, qt-dotgraph, qt-gui, qt-gui-app, qt-gui-cpp, qt-gui-py-common }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-qt-gui-core";
|
|
version = "1.1.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/foxy/qt_gui_core/1.1.3-1.tar.gz";
|
|
name = "1.1.3-1.tar.gz";
|
|
sha256 = "1b891a4fd2c59681d21cd99ad6fafe9d1cf54d4b20d56e757335fcedb1cdf37c";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ qt-dotgraph qt-gui qt-gui-app qt-gui-cpp qt-gui-py-common ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''Integration of the ROS package system and ROS-specific plugins for a Qt-based GUI.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|