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/melodic/qt-gui-app/default.nix

24 lines
819 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages, qt-gui }:
buildRosPackage {
pname = "ros-melodic-qt-gui-app";
version = "0.4.2-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/qt_gui_core-release/archive/release/melodic/qt_gui_app/0.4.2-1.tar.gz";
name = "0.4.2-1.tar.gz";
sha256 = "1a3688850927819c2149581859f6a053358d99f8ffe836da25013a45feacf093";
};
buildType = "catkin";
propagatedBuildInputs = [ qt-gui ];
nativeBuildInputs = [ catkin pythonPackages.setuptools ];
meta = {
description = ''qt_gui_app provides the main to start an instance of the integrated graphical user interface provided by qt_gui.'';
license = with lib.licenses; [ bsdOriginal ];
};
}