signald is installed through bitlbee's purple-signald plugin

This commit is contained in:
ninewise 2022-09-13 23:33:49 +02:00
parent 394370fc24
commit 3e078722a3
2 changed files with 1 additions and 18 deletions

View File

@ -57,8 +57,6 @@
weechat
weechatScripts.weechat-go
weechatScripts.colorize_nicks
# weechatScripts.signal-weechat does not exist
signald
matterircd
bitlbee
];
@ -93,6 +91,7 @@
services.bitlbee = {
enable = true;
libpurple_plugins = [ pkgs.purple-signald ];
};
# Open ports in the firewall.

View File

@ -1,16 +0,0 @@
with import <nixpkgs> {};
stdenv.mkDerivation rec {
pname = "purple-signald";
version = "0.10.0";
src = fetchFromGitHub {
owner = "hoehermann";
repo = pname;
rev = "5402cb63f6a20b90f7d3cc6fdb4bd5aca50eaab0";
sha256 = "LdQhXT3GyY2mTRXUSgynwxcEb/rPIU9VaWTPpq7jAHs=";
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake ];
buildInputs = [ pidgin json-glib ];
}