mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
65 lines
1.8 KiB
Nix
65 lines
1.8 KiB
Nix
{ lib, stdenv, fetchurl, makeDesktopItem, makeWrapper, unzip, mono, gitUpdater
|
|
}:
|
|
|
|
let
|
|
pname = "mission-planner";
|
|
desktopItem = makeDesktopItem {
|
|
name = pname;
|
|
exec = pname;
|
|
icon = pname;
|
|
comment = "MissionPlanner GCS & Ardupilot configuration tool";
|
|
desktopName = "MissionPlanner";
|
|
genericName = "Ground Control Station";
|
|
};
|
|
in stdenv.mkDerivation rec {
|
|
inherit pname;
|
|
version = "1.3.82";
|
|
|
|
src = fetchurl {
|
|
url =
|
|
"https://firmware.ardupilot.org/Tools/MissionPlanner/MissionPlanner-${version}.zip";
|
|
sha256 = "sha256-554fFDxHMo4jV3yrPdGgDYQ6XeW+TWdVIIkGQIBdrCQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper mono unzip ];
|
|
sourceRoot = ".";
|
|
|
|
AOT_FILES = [ "MissionPlanner.exe" "MissionPlanner.*.dll" ];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
for file in $AOT_FILES
|
|
do
|
|
mono --aot $file
|
|
done
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/{bin,opt/mission-planner}
|
|
install -m 444 -D mpdesktop150.png $out/share/icons/mission-planner.png
|
|
cp -r ${desktopItem}/share/applications $out/share/
|
|
mv * $out/opt/mission-planner
|
|
makeWrapper ${mono}/bin/mono $out/bin/mission-planner \
|
|
--add-flags $out/opt/mission-planner/MissionPlanner.exe
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = gitUpdater { };
|
|
|
|
meta = with lib; {
|
|
description = "ArduPilot ground station";
|
|
mainProgram = "mission-planner";
|
|
longDescription = ''
|
|
Full-featured ground station application for the ArduPilot open source
|
|
autopilot project. Lets you both flash, configure and control ArduPilot
|
|
Plane, Copter and Rover targets.
|
|
'';
|
|
homepage = "https://ardupilot.org/planner/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ wucke13 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|