mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
52 lines
1.7 KiB
Nix
52 lines
1.7 KiB
Nix
{ lib, mkDerivation, fetchFromGitHub
|
|
, cmake, gcc-arm-embedded, python3Packages
|
|
, qtbase, qtmultimedia, qttranslations, SDL, gtest
|
|
, dfu-util, avrdude
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "opentx";
|
|
version = "2.3.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "opentx";
|
|
repo = "opentx";
|
|
# 2.3.14 release tag points to the commit before the one that updates the
|
|
# version number.
|
|
# rev = "release/${version}";
|
|
rev = "1e09791a1e2fe2a0ca9835019d634a4c6a4fa3bf";
|
|
sha256 = "0mhzp1j6nmqvkjxg8lv8xa637m1lavdsak30mdlq0g25dhwg6k92";
|
|
};
|
|
|
|
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|' \
|
|
-e 's|/usr/.*bin/avrdude|${avrdude}/bin/avrdude|'
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-DGTEST_ROOT=${gtest.src}/googletest"
|
|
"-DQT_TRANSLATIONS_DIR=${qttranslations}/translations"
|
|
# XXX I would prefer to include these here, though we will need to file a bug upstream to get that changed.
|
|
#"-DDFU_UTIL_PATH=${dfu-util}/bin/dfu-util"
|
|
#"-DAVRDUDE_PATH=${avrdude}/bin/avrdude"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "OpenTX Companion transmitter support software";
|
|
longDescription = ''
|
|
OpenTX Companion is used for many different tasks like loading OpenTX
|
|
firmware to the radio, backing up model settings, editing settings and
|
|
running radio simulators.
|
|
'';
|
|
homepage = "https://www.open-tx.org/";
|
|
license = licenses.gpl2Only;
|
|
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
|
|
maintainers = with maintainers; [ elitak lopsided98 ];
|
|
};
|
|
|
|
}
|