1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 00:54:11 +00:00
nixpkgs/pkgs/servers/matrix-corporal/default.nix

27 lines
780 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "matrix-corporal";
2021-01-22 15:14:38 +00:00
version = "2.1.0";
src = fetchFromGitHub {
owner = "devture";
repo = pname;
rev = version;
2021-01-22 15:14:38 +00:00
sha256 = "sha256-u1ppwy+t2ewAH0/+R6e0Ja5A3PQG/lUy2b6kgcMVj8E=";
};
2021-08-26 07:45:51 +01:00
ldflags = [
"-s" "-w" "-X main.GitCommit=${version}" "-X main.GitBranch=${version}" "-X main.GitState=nixpkgs" "-X main.GitSummary=${version}" "-X main.Version=${version}"
];
2021-01-22 15:14:38 +00:00
vendorSha256 = "sha256-YmUiGsg2UZfV6SHEPwnbmWPhGQ5teV+we9MBaJyrJr4=";
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;
};
}