2020-02-28 07:45:11 +03:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, libevdev
|
|
|
|
, SDL2
|
|
|
|
, withSimulator ? false
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
inherit (lib) optional optionals optionalString;
|
|
|
|
simulatorDeps = [
|
|
|
|
SDL2
|
|
|
|
];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "mobile-nixos-early-boot-gui";
|
|
|
|
version = "2020-02-05";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
fetchSubmodules = true;
|
|
|
|
repo = "lvgui";
|
|
|
|
owner = "mobile-nixos";
|
|
|
|
rev = "27ce1511c3c30ed0921fb92504337f1917ab0943";
|
|
|
|
sha256 = "1vdahc0lymzprnlckdxcba9p78gqymvsy3bhmyqzjx68r8xcd985";
|
|
|
|
};
|
|
|
|
|
2020-03-02 01:28:16 +03:00
|
|
|
# Document `LVGL_ENV_SIMULATOR` in the built headers.
|
|
|
|
# This allows the mrbgem to know about it.
|
|
|
|
# (In reality this should be part of a ./configure step or something similar.)
|
|
|
|
postPatch = ''
|
|
|
|
sed -i"" '/^#define LV_CONF_H/a #define LVGL_ENV_SIMULATOR ${if withSimulator then "1" else "0"}' lv_conf.h
|
|
|
|
'';
|
|
|
|
|
2020-02-28 07:45:11 +03:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libevdev
|
|
|
|
]
|
|
|
|
++ optionals withSimulator simulatorDeps
|
|
|
|
;
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
|
|
"-DX_DISPLAY_MISSING"
|
|
|
|
];
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
]
|
|
|
|
++ optional withSimulator "LVGL_ENV_SIMULATOR=1"
|
|
|
|
++ optional (!withSimulator) "LVGL_ENV_SIMULATOR=0"
|
|
|
|
;
|
|
|
|
|
|
|
|
# TODO: `make install`...
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/lib
|
|
|
|
cp -vr lib*.a $out/lib/
|
|
|
|
|
|
|
|
mkdir -p $out/include
|
|
|
|
find . -name '*.h' -exec install -vD '{}' $out/include/'{}' ';'
|
|
|
|
|
|
|
|
mkdir -p $out/lib/pkgconfig
|
|
|
|
cat <<EOF > $out/lib/pkgconfig/lvgui.pc
|
|
|
|
Name: lvgui
|
|
|
|
Description: LVGL-based GUI library
|
|
|
|
Version: $version
|
|
|
|
Requires: ${optionalString withSimulator "sdl2"}
|
|
|
|
|
|
|
|
Cflags: -I$out/include
|
|
|
|
Libs: $out/lib/liblvgui.a
|
|
|
|
EOF
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
}
|