nixpkgs/pkgs/servers/matrix-corporal/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
823 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "matrix-corporal";
2021-11-19 15:15:31 +00:00
version = "2.2.0";
src = fetchFromGitHub {
owner = "devture";
repo = pname;
rev = version;
2021-11-19 15:15:31 +00:00
sha256 = "sha256-KSKPTbF1hhzLyD+iL4+hW9EuV+xFYzSzHu1DSGXWm90=";
};
2021-08-26 06:45:51 +00:00
ldflags = [
"-s" "-w" "-X main.GitCommit=${version}" "-X main.GitBranch=${version}" "-X main.GitState=nixpkgs" "-X main.GitSummary=${version}" "-X main.Version=${version}"
];
vendorHash = "sha256-sC9JA6VRmHGuO3anaZW2Ih5QnRrUom9IIOE7yi3TTG8=";
meta = with lib; {
homepage = "https://github.com/devture/matrix-corporal";
description = "Reconciliator and gateway for a managed Matrix server";
maintainers = with maintainers; [ dandellion ];
mainProgram = "devture-matrix-corporal";
license = licenses.agpl3Only;
};
}