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/libqt-gui/default.nix

25 lines
761 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, qt5 }:
buildRosPackage {
pname = "ros-melodic-libqt-gui";
version = "1.0.1";
src = fetchurl {
url = "https://github.com/swri-robotics-gbp/qt_metapackages-release/archive/release/melodic/libqt_gui/1.0.1-0.tar.gz";
name = "1.0.1-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "a3fc2fc444b1b7b9d685e693868c3b8652420097c949bdd759f68f1f802fb903";
};
buildType = "catkin";
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ qt5.qtbase ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''libqt-gui metapackage supporting qt4 and qt5'';
license = with lib.licenses; [ "United States Government Purpose" "SwRI Proprietary" ];
2019-03-21 00:14:59 -04:00
};
}