Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions pkgs/by-name/we/webcord/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@

buildNpmPackage rec {
pname = "webcord";
version = "4.10.2";
version = "4.10.3";

src = fetchFromGitHub {
owner = "SpacingBat3";
repo = "WebCord";
tag = "v${version}";
hash = "sha256-vzTT8tHpbJSt1PosgKTg3pT4a9UfPabtJppLLD9znhU=";
hash = "sha256-ga94CBc87q1U06Bm6ju304CHrIlFRLcIwNJx3GB2S+w=";
};

npmDepsHash = "sha256-nVQv+GSnfQa8V/RitvV2juokbiRJ/vIMLWcg9QPDbP0=";
npmDepsHash = "sha256-h14sYaUeXb57kjxSSiXyvDjaswWi1qPAU/x1xQz3BaY=";

makeCacheWritable = true;

nativeBuildInputs = [
copyDesktopItems
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15795,7 +15795,7 @@ with pkgs;

webcamoid = libsForQt5.callPackage ../applications/video/webcamoid { };

webcord = callPackage ../by-name/we/webcord/package.nix { electron = electron_32; };
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As per #370758 (comment), this should have been

{ electron = electron_33; };

webcord = callPackage ../by-name/we/webcord/package.nix { electron = electron; };

webcord-vencord = callPackage ../by-name/we/webcord-vencord/package.nix { electron = electron_31; };
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And the actual package flagged and affected by #370758 isn't webcord, it's webcord-vendord.

webcord was already at electron_32, which won't be EOL for another two months or so.

webcord-vendord on the other hand is still at electron_31.


Expand Down