1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2025-01-06 03:27:17 +03:00

lvgui: Drop NIX_CFLAGS_COMPILE arg

I don't recalle why `X_DISPLAY_MISSING` was needed at some point, but it
must not be anymore since it works fine without.

Also drop the needless stdenv adapter.
This commit is contained in:
Samuel Dionne-Riel 2023-03-02 19:55:24 -05:00
parent c252e7bd91
commit cb559d2aaa

View File

@ -9,8 +9,6 @@
, withSimulator ? false
}:
let stdenv = pkgs.stdenvAdapters.keepDebugInfo pkgs.stdenv; in
let
inherit (lib) optional optionals optionalString;
simulatorDeps = [
@ -127,10 +125,6 @@ in
++ optionals withSimulator simulatorDeps
;
NIX_CFLAGS_COMPILE = [
"-DX_DISPLAY_MISSING"
];
makeFlags = [
"PREFIX=${placeholder "out"}"
]