nixpkgs/pkgs/applications/science/robotics/qgroundcontrol/default.nix

77 lines
2.0 KiB
Nix
Raw Normal View History

2020-07-11 12:27:23 -07:00
{ lib, mkDerivation, fetchFromGitHub, SDL2
, qtbase, qtcharts, qtlocation, qtserialport, qtsvg, qtquickcontrols2
2020-06-04 14:41:40 -07:00
, qtgraphicaleffects, qtspeech, qtx11extras, qmake, qttools
, gst_all_1, wayland, pkgconfig
2016-03-24 16:06:20 -07:00
}:
mkDerivation rec {
pname = "qgroundcontrol";
2020-07-11 12:27:23 -07:00
version = "4.0.9";
2016-03-24 16:06:20 -07:00
qtInputs = [
qtbase qtcharts qtlocation qtserialport qtsvg qtquickcontrols2
2020-06-04 14:41:40 -07:00
qtgraphicaleffects qtspeech qtx11extras
2016-03-24 16:06:20 -07:00
];
gstInputs = with gst_all_1; [
2020-06-04 14:41:40 -07:00
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad wayland
2016-03-24 16:06:20 -07:00
];
enableParallelBuilding = true;
buildInputs = [ SDL2 ] ++ gstInputs ++ qtInputs;
2020-06-04 14:41:40 -07:00
nativeBuildInputs = [ pkgconfig qmake qttools ];
2016-03-24 16:06:20 -07:00
2016-05-29 09:51:07 -07:00
preConfigure = ''
mkdir build
cd build
'';
qmakeFlags = [
# Default install tries to copy Qt files into package
"CONFIG+=QGC_DISABLE_BUILD_SETUP"
"../qgroundcontrol.pro"
];
2016-05-29 09:51:07 -07:00
2016-03-24 16:06:20 -07:00
installPhase = ''
2020-06-04 14:41:40 -07:00
runHook preInstall
2016-05-29 09:51:07 -07:00
cd ..
2016-03-24 16:06:20 -07:00
mkdir -p $out/share/applications
sed 's/Exec=.*$/Exec=QGroundControl/g' --in-place deploy/qgroundcontrol.desktop
cp -v deploy/qgroundcontrol.desktop $out/share/applications
2016-03-24 16:06:20 -07:00
mkdir -p $out/bin
cp -v build/release/QGroundControl "$out/bin/"
2016-03-24 16:06:20 -07:00
mkdir -p $out/share/qgroundcontrol
cp -rv resources/ $out/share/qgroundcontrol
2016-03-24 16:06:20 -07:00
mkdir -p $out/share/pixmaps
cp -v resources/icons/qgroundcontrol.png $out/share/pixmaps
2020-06-04 14:41:40 -07:00
runHook postInstall
2016-03-24 16:06:20 -07:00
'';
postInstall = ''
2020-06-04 14:41:40 -07:00
qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0")
2016-03-24 16:06:20 -07:00
'';
# TODO: package mavlink so we can build from a normal source tarball
2020-07-11 12:27:23 -07:00
src = fetchFromGitHub {
owner = "mavlink";
repo = pname;
rev = "v${version}";
2020-07-11 12:27:23 -07:00
sha256 = "0fwibgb9wmxk2zili5vsibi2q6pk1gna21870y5abx4scbvhgq68";
2016-03-24 16:06:20 -07:00
fetchSubmodules = true;
};
meta = with lib; {
description = "Provides full ground station support and configuration for the PX4 and APM Flight Stacks";
homepage = "http://qgroundcontrol.org/";
license = licenses.gpl3Plus;
platforms = platforms.linux;
2020-06-04 14:41:40 -07:00
maintainers = with maintainers; [ lopsided98 ];
2016-03-24 16:06:20 -07:00
};
}