593e11fd94
According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
54 lines
1.6 KiB
Nix
54 lines
1.6 KiB
Nix
{ lib, mkDerivation, fetchFromGitHub, fetchpatch, qmake
|
|
, qtbase, qtscript, qtwebkit, qtserialport, qtsvg, qtdeclarative, qtquickcontrols2
|
|
, alsaLib, libsndfile, flite, openssl, udev, SDL2
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "apmplanner2";
|
|
version = "2.0.27-rc1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ArduPilot";
|
|
repo = "apm_planner";
|
|
rev = version;
|
|
sha256 = "1k0786mjzi49nb6yw4chh9l4dmkf9gybpxg9zqkr5yg019nyzcvd";
|
|
};
|
|
|
|
patches = [
|
|
# can be dropped after 2.0.27-rc1
|
|
(fetchpatch {
|
|
url = "https://github.com/ArduPilot/apm_planner/commit/299ff23b5e9910de04edfc06b6893bb06b47a57b.patch";
|
|
sha256 = "16rc81iwqp2i46g6bm9lbvcjfsk83999r9h8w1pz0mys7rsilvqy";
|
|
})
|
|
];
|
|
|
|
buildInputs = [
|
|
alsaLib libsndfile flite openssl udev SDL2
|
|
qtbase qtscript qtwebkit qtserialport qtsvg qtdeclarative qtquickcontrols2
|
|
];
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
|
|
qmakeFlags = [ "apm_planner.pro" ];
|
|
|
|
# this ugly hack is necessary, as `bin/apmplanner2` needs the contents of `share/APMPlanner2` inside of `bin/`
|
|
preFixup = ''
|
|
ln --relative --symbolic $out/share/APMPlanner2/* $out/bin/
|
|
substituteInPlace $out/share/applications/apmplanner2.desktop \
|
|
--replace /usr $out
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Ground station software for autonomous vehicles";
|
|
longDescription = ''
|
|
A GUI ground control station for autonomous vehicles using the MAVLink protocol.
|
|
Includes support for the APM and PX4 based controllers.
|
|
'';
|
|
homepage = https://ardupilot.org/planner2/;
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [ wucke13 ];
|
|
};
|
|
}
|