Merge pull request #172988 from McSinyx/dendrite-0.8.5
dendrite: 0.8.4 -> 0.8.5
This commit is contained in:
commit
ea69f79829
1 changed files with 7 additions and 6 deletions
|
@ -1,17 +1,18 @@
|
||||||
{ lib, buildGoModule, fetchFromGitHub, fetchurl, nixosTests, postgresql, postgresqlTestHook }:
|
{ lib, buildGoModule, fetchFromGitHub
|
||||||
|
, nixosTests, postgresql, postgresqlTestHook }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "matrix-dendrite";
|
pname = "matrix-dendrite";
|
||||||
version = "0.8.4";
|
version = "0.8.5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "matrix-org";
|
owner = "matrix-org";
|
||||||
repo = "dendrite";
|
repo = "dendrite";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-w4un+TdFTzfVZltvo6ZAPQ3B9HJvnGlJW+LmZHuYk1M=";
|
sha256 = "sha256-MPWvBUI6Mqt3f5UY6lpTBwPpihW+QSNq1M3FnIff+mM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-AJ7Hn23aji/cXioDaOSyF8XD3Mr135DZf7KbUW1SoJ4=";
|
vendorSha256 = "sha256-OXy2xuwTLPNvBnVB6wj/YRW/XMiekjTubRRPVX9bxdQ=";
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
postgresqlTestHook
|
postgresqlTestHook
|
||||||
|
@ -31,8 +32,8 @@ buildGoModule rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://matrix.org";
|
homepage = "https://matrix-org.github.io/dendrite";
|
||||||
description = "Dendrite is a second-generation Matrix homeserver written in Go!";
|
description = "A second-generation Matrix homeserver written in Go";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = teams.matrix.members;
|
maintainers = teams.matrix.members;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
|
Loading…
Reference in a new issue