Add matrix to pidgin (not working right now)

Doesn't work yet for me due to:
https://github.com/matrix-org/purple-matrix/issues/28
This commit is contained in:
Daniel Siepmann 2022-08-30 14:20:54 +02:00
parent cebae709fa
commit ddaf533f47
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
2 changed files with 13 additions and 0 deletions

View file

@ -6,6 +6,7 @@
plugins = [
pkgs.pidgin-window-merge
pkgs.purple-slack
pkgs.purple-matrix
# Waiting for https://github.com/NixOS/nixpkgs/issues/188384 to switch back to official package
# pkgs.purple-signald
(pkgs.callPackage ./../packages/purple-signald { })

View file

@ -0,0 +1,12 @@
self: super: {
purple-matrix = super.purple-matrix.overrideAttrs(old: {
version = "2022-08-30";
src = super.fetchFromGitHub {
owner = "matrix-org";
repo = "purple-matrix";
rev = "9c5bffa94b9e0af13845cb7466c95a079f54a630";
sha256 = "sha256-jihDunHNzQ+4ViN7t6AZ7gE5YbrCS7Iz3qsFvGfUZ7U=";
};
});
}