mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
27 lines
722 B
Nix
27 lines
722 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "bbctl";
|
|
version = "0.12.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "beeper";
|
|
repo = "bridge-manager";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Q8RgfkPw8KPkfORaPCwM18rNhzNm4UcH4hSdfYe4FZo=";
|
|
};
|
|
|
|
vendorHash = "sha256-uz4pao8Y/Sb3fffi9d0lbWQEUMohbthA6t6k6PfQz2M=";
|
|
|
|
meta = {
|
|
description = "Tool for running self-hosted bridges with the Beeper Matrix server.";
|
|
homepage = "https://github.com/beeper/bridge-manager";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.heywoodlh ];
|
|
mainProgram = "bbctl";
|
|
changelog = "https://github.com/beeper/bridge-manager/releases/tag/v${version}";
|
|
};
|
|
}
|