nix-ros-overlay/distros/foxy/qt-gui-core/default.nix

24 lines
865 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-foxy-qt-gui-core";
version = "1.1.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/foxy/qt_gui_core/1.1.2-1.tar.gz";
name = "1.1.2-1.tar.gz";
sha256 = "e24ef1a3c8e91225fac465220608ff8d642dfb28c14d12755bcff2594d186ed4";
};
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 ];
};
}