1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/melodic/libqt-core/default.nix

24 lines
764 B
Nix

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