nix: remove patches from downstream

The patches is the modification of downstream, it should not affect upstream. Any changes of upstream would caused patch fail.
This commit is contained in:
mslxl 2024-09-25 09:56:42 +08:00
parent 07f75e303c
commit c88a86f510
No known key found for this signature in database
GPG Key ID: 79289225D74A382D
1 changed files with 3 additions and 0 deletions

View File

@ -25,6 +25,9 @@ in
mesonFlags = lib.remove "-Dgtk-layer-shell=enabled" oldAttrs.mesonFlags; mesonFlags = lib.remove "-Dgtk-layer-shell=enabled" oldAttrs.mesonFlags;
# downstream patch should not affect upstream
patches = [];
buildInputs = (builtins.filter (p: p.pname != "wireplumber") oldAttrs.buildInputs) ++ [ buildInputs = (builtins.filter (p: p.pname != "wireplumber") oldAttrs.buildInputs) ++ [
pkgs.wireplumber pkgs.wireplumber
]; ];