mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat: matrix appservices and weechat setup
This commit is contained in:
parent
468c9bc811
commit
4b0a194abb
37 changed files with 850 additions and 334 deletions
29
packages/mautrix-slack.nix
Normal file
29
packages/mautrix-slack.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub, olm, libsignal-ffi }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "mautrix-slack";
|
||||
version = "2024-05-01";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mautrix";
|
||||
repo = "slack";
|
||||
rev = "75d2ffd88b6f1d097697fab363099ed7d37fff6f";
|
||||
hash = "sha256-l0pZPp11VJ7xP0uuctjOEZHCDnS4OAbxMRkcNQLbMzs=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
olm
|
||||
];
|
||||
|
||||
vendorHash = "sha256-FL0wObZIvGV9V7pLmrxTILQ/TGEMSH8/2wFPlu6idcA=";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/mautrix/slack";
|
||||
description = "A Matrix-Slack puppeting bridge";
|
||||
license = licenses.agpl3Plus;
|
||||
maintainers = with maintainers; [ kittywitch ];
|
||||
mainProgram = "mautrix-slack";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue