mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-18 05:18:39 +03:00
24 lines
871 B
Nix
24 lines
871 B
Nix
|
|
# Copyright 2019 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-dashing-qt-gui-core";
|
|
version = "1.0.7-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/dashing/qt_gui_core/1.0.7-1.tar.gz";
|
|
name = "1.0.7-1.tar.gz";
|
|
sha256 = "3549aa1ec63b99aecf153019e26b0057f3277a940525569c1d967b7206163c3b";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|