infinitime-builder/package.nix
2024-02-01 17:08:08 +01:00

74 lines
1.8 KiB
Nix

{
stdenv,
cmake,
lv_img_conv,
nodePackages,
python3,
gcc-arm-embedded-10,
nrf5-sdk,
fetchzip,
patch,
git,
fetchFromGitHub,
fetchpatch,
adafruit-nrfutil,
}: let
infinitime-nrf5-sdk = nrf5-sdk.overrideAttrs (old: {
version = "15.3.0";
src = fetchzip {
url = "https://nsscprodmedia.blob.core.windows.net/prod/software-and-other-downloads/sdks/nrf5/binaries/nrf5sdk153059ac345.zip";
sha256 = "sha256-pfmhbpgVv5x2ju489XcivguwpnofHbgVA7bFUJRTj08=";
};
});
in stdenv.mkDerivation rec {
name = "infinitime";
src = fetchFromGitHub {
owner = "InfiniTimeOrg";
repo = "InfiniTime";
rev = "1.14.0";
hash = "sha256-NWqlhQonBhWlSyI4IHLXrc8+FhUKzSo4EvLCLRFgFf0=";
fetchSubmodules = true;
};
patches = [
(fetchpatch {
name = "charging-battery.patch";
url = "https://github.com/InfiniTimeOrg/InfiniTime/commit/b04558c3.patch";
sha256 = "sha256-VXCq8CM14zT7vji2x8rb9ZTji3yVc6fNgF/PfdcMLDM=";
})
];
nativeBuildInputs = [
cmake
lv_img_conv
nodePackages.lv_font_conv
python3
python3.pkgs.cbor
python3.pkgs.click
python3.pkgs.cryptography
python3.pkgs.intelhex
python3.pkgs.pillow
adafruit-nrfutil
patch
git
];
postPatch = ''
# /usr/bin/env is not available in the build sandbox
substituteInPlace src/displayapp/fonts/generate.py --replace "'/usr/bin/env', 'patch'" "'patch'"
substituteInPlace tools/mcuboot/imgtool.py --replace "/usr/bin/env python3" "${python3}/bin/python3"
'';
cmakeFlags = [
''-DARM_NONE_EABI_TOOLCHAIN_PATH=${gcc-arm-embedded-10}''
''-DNRF5_SDK_PATH=${infinitime-nrf5-sdk}/share/nRF5_SDK''
''-DBUILD_DFU=1''
''-DBUILD_RESOURCES=1''
''-DCMAKE_SOURCE_DIR=${src}''
];
installPhase = ''
SOURCES_DIR=${src} BUILD_DIR=. OUTPUT_DIR=$out ./post_build.sh
'';
}