mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 16:11:58 +00:00
40952628a9
* matrix-corporal: init at 2.0.1 * Update pkgs/servers/matrix-corporal/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
27 lines
787 B
Nix
27 lines
787 B
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "matrix-corporal";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "devture";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1n8yjmy3j0spgwpxgc26adhpl52fm3d2xbmkf5n9dwzw29grv68r";
|
|
};
|
|
|
|
buildFlagsArray = [
|
|
"-ldflags=-s -w -X main.GitCommit=${version} -X main.GitBranch=${version} -X main.GitState=nixpkgs -X main.GitSummary=${version} -X main.Version=${version}"
|
|
];
|
|
|
|
vendorSha256 = "1gi6mff6h0fkgfq5yybd1qcy2qwrvc4kzi11x7arfl9nr0d24rb2";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/devture/matrix-corporal";
|
|
description = "Reconciliator and gateway for a managed Matrix server";
|
|
maintainers = with maintainers; [ dandellion ];
|
|
license = licenses.agpl3Only;
|
|
};
|
|
}
|