mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-15 14:40:58 +03:00
25 lines
873 B
Nix
25 lines
873 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, qt-gui-app, qt-gui-py-common, ament-cmake, qt-gui-cpp, qt-gui, qt-dotgraph }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-eloquent-qt-gui-core";
|
||
|
version = "1.0.7-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/eloquent/qt_gui_core/1.0.7-1.tar.gz";
|
||
|
name = "1.0.7-1.tar.gz";
|
||
|
sha256 = "b6cb56a4ebd123263e0123ca6c88ed5bdd809494dd7c4c7d826cd9470ea14c0d";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
propagatedBuildInputs = [ qt-gui-app qt-gui-py-common qt-gui-cpp qt-gui qt-dotgraph ];
|
||
|
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 ];
|
||
|
};
|
||
|
}
|