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

24 lines
873 B
Nix

# Copyright 2020 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-eloquent-qt-gui-core";
version = "1.0.9-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/eloquent/qt_gui_core/1.0.9-1.tar.gz";
name = "1.0.9-1.tar.gz";
sha256 = "da648058e9c917d78d673286d08759d86a68c1ea0fc8323565eb04b2463fb4e4";
};
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 ];
};
}