meson: Remove kmsro driver
It is enabled automatically as needed.
This commit is contained in:
parent
d7185276ef
commit
913928341d
1 changed files with 14 additions and 1 deletions
|
@ -57,6 +57,20 @@ in genAttrs [
|
||||||
zstdSupport = true;
|
zstdSupport = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
electron = prev.electron.override {
|
||||||
|
electron-unwrapped = prev.electron.unwrapped.overrideAttrs (prevAttrs: {
|
||||||
|
gnFlags = prevAttrs.gnFlags or "" + ''
|
||||||
|
# Disable X11
|
||||||
|
ozone_platform_x11 = false
|
||||||
|
|
||||||
|
# Disable internal memory allocator
|
||||||
|
use_partition_alloc_as_malloc = false
|
||||||
|
enable_backup_ref_ptr_support = false
|
||||||
|
enable_pointer_compression_support = false
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
evolution = prev.evolution.overrideAttrs (prevAttrs: {
|
evolution = prev.evolution.overrideAttrs (prevAttrs: {
|
||||||
buildInputs = prevAttrs.buildInputs or [ ]
|
buildInputs = prevAttrs.buildInputs or [ ]
|
||||||
|> removePackages [ "libcanberra" ];
|
|> removePackages [ "libcanberra" ];
|
||||||
|
@ -182,7 +196,6 @@ in genAttrs [
|
||||||
})).override {
|
})).override {
|
||||||
galliumDrivers = [
|
galliumDrivers = [
|
||||||
"iris"
|
"iris"
|
||||||
"kmsro"
|
|
||||||
"nouveau"
|
"nouveau"
|
||||||
"radeonsi"
|
"radeonsi"
|
||||||
"swrast"
|
"swrast"
|
||||||
|
|
Loading…
Reference in a new issue