nixpkgs/pkgs/applications/networking/instant-messengers/webcord/webcord-vencord/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
423 B
Nix
Raw Normal View History

{ webcord
, substituteAll
, lib
, vencord-web-extension
}:
2023-08-16 03:56:23 +00:00
webcord.overrideAttrs (old: {
pname = "webcord-vencord";
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 ];
};
2023-08-16 03:56:23 +00:00
})