qgroundcontrol: 4.1.4 -> 4.2.0

* qgroundcontrol: 4.1.4 -> 4.2.0 (#159291)

QGroundControl now tries to download a prebuilt x86_64 .deb package for
the Airmap SDK, so we have to disable this feature. Previously, it was
disabled by default. I guess they were trying to make things easier for
users, but it seems pretty half-baked.

* qgroundcontrol: update homepage

The domain seems to have changed from .org to .com.
This commit is contained in:
Ben Wolsieffer 2022-02-17 18:09:39 -05:00 committed by GitHub
parent 4befe7a89f
commit 1382f006a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@
mkDerivation rec {
pname = "qgroundcontrol";
version = "4.1.4";
version = "4.2.0";
qtInputs = [
qtbase qtcharts qtlocation qtserialport qtsvg qtquickcontrols2
@ -29,6 +29,8 @@ mkDerivation rec {
"CONFIG+=StableBuild"
# Default install tries to copy Qt files into package
"CONFIG+=QGC_DISABLE_BUILD_SETUP"
# Tries to download x86_64-only prebuilt binaries
"DEFINES+=DISABLE_AIRMAP"
"../qgroundcontrol.pro"
];
@ -62,13 +64,13 @@ mkDerivation rec {
owner = "mavlink";
repo = pname;
rev = "v${version}";
sha256 = "0lhc36jpy7a5bnysqi574nk5izglj557mf8n9lcsgvzwxlkb2rbf";
sha256 = "sha256-TBnJQKO9cwxP9q+bIB1CaGnm9npymJ3iEAD9kPJi9JA=";
fetchSubmodules = true;
};
meta = with lib; {
description = "Provides full ground station support and configuration for the PX4 and APM Flight Stacks";
homepage = "http://qgroundcontrol.org/";
homepage = "http://qgroundcontrol.com/";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ lopsided98 ];