diff --git a/configuration.nix b/configuration.nix index ba4bfaa..6d6eb3e 100644 --- a/configuration.nix +++ b/configuration.nix @@ -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. diff --git a/purple-signald.nix b/purple-signald.nix deleted file mode 100644 index de63aa6..0000000 --- a/purple-signald.nix +++ /dev/null @@ -1,16 +0,0 @@ -with import {}; - -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 ]; -}