qtwebengine: Work around missing define
This commit is contained in:
parent
8c11f6bf01
commit
61ad29f4c6
1 changed files with 8 additions and 0 deletions
|
@ -330,6 +330,14 @@ in genAttrs [
|
|||
postgresql = null;
|
||||
qttranslations = null;
|
||||
};
|
||||
|
||||
qtwebengine = prev.qtwebengine.overrideAttrs (prevAttrs: {
|
||||
env = prevAttrs.env or { } // {
|
||||
# hacky
|
||||
NIX_CFLAGS_COMPILE = toList prevAttrs.env.NIX_CFLAGS_COMPILE or [ ] ++
|
||||
[ "-DGL_RGBA8_OES=0x8058" ];
|
||||
};
|
||||
});
|
||||
});
|
||||
|
||||
systemd = prev.systemd.override {
|
||||
|
|
Loading…
Reference in a new issue