about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/instant-messengers/webcord/webcord-vencord/default.nix
blob: 0f4a9b4f31e77bef69b5baede408c9c071b64dc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ webcord
, substituteAll
, lib
, vencord-web-extension
}:

webcord.overrideAttrs (old: {
  patches = (old.patches or [ ]) ++ [
    (substituteAll {
      src = ./add-extension.patch;
      vencord = vencord-web-extension;
    })
  ];

  meta = with lib; old.meta // {
    description = "Webcord with Vencord web extension";
    maintainers = with maintainers; [ FlafyDev NotAShelf ];
  };
})