50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ lib, mkDerivation, fetchFromGitHub
|
|
, cmake, gcc-arm-embedded, python3Packages
|
|
, qtbase, qtmultimedia, qttranslations, SDL, gtest
|
|
, dfu-util
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "edgetx";
|
|
version = "2.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "EdgeTX";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
fetchSubmodules = true;
|
|
sha256 = "sha256-1l5EoDY17+2PDS3eRT3CHksVoZQgNLV9vRDu7nfzlrE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake gcc-arm-embedded python3Packages.pillow ];
|
|
|
|
buildInputs = [ qtbase qtmultimedia qttranslations SDL ];
|
|
|
|
postPatch = ''
|
|
sed -i companion/src/burnconfigdialog.cpp \
|
|
-e 's|/usr/.*bin/dfu-util|${dfu-util}/bin/dfu-util|'
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-DGTEST_ROOT=${gtest.src}/googletest"
|
|
"-DQT_TRANSLATIONS_DIR=${qttranslations}/translations"
|
|
"-DDFU_UTIL_PATH=${dfu-util}/bin/dfu-util"
|
|
# file RPATH_CHANGE could not write new RPATH
|
|
"-DCMAKE_SKIP_BUILD_RPATH=ON"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "EdgeTX Companion transmitter support software";
|
|
longDescription = ''
|
|
EdgeTX Companion is used for many different tasks like loading EdgeTX
|
|
firmware to the radio, backing up model settings, editing settings and
|
|
running radio simulators.
|
|
'';
|
|
homepage = "https://edgetx.org/";
|
|
license = licenses.gpl2Only;
|
|
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
|
|
maintainers = with maintainers; [ elitak lopsided98 wucke13 ];
|
|
};
|
|
|
|
}
|