1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/qt-qmake/default.nix

24 lines
706 B
Nix
Raw Normal View History

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