Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
30 lines
590 B
Nix
30 lines
590 B
Nix
{
|
|
# allow overriding electron
|
|
electron,
|
|
webcord,
|
|
substituteAll,
|
|
lib,
|
|
vencord-web-extension,
|
|
}:
|
|
|
|
# nixpkgs-update: no auto update
|
|
(webcord.override { inherit electron; }).overrideAttrs (old: {
|
|
pname = "webcord-vencord";
|
|
|
|
patches = (old.patches or [ ]) ++ [
|
|
(substituteAll {
|
|
src = ./add-extension.patch;
|
|
vencord = vencord-web-extension;
|
|
})
|
|
];
|
|
|
|
meta = {
|
|
inherit (old.meta) license mainProgram platforms;
|
|
|
|
description = "Webcord with Vencord web extension";
|
|
maintainers = with lib.maintainers; [
|
|
FlafyDev
|
|
NotAShelf
|
|
];
|
|
};
|
|
})
|