Merge pull request #172988 from McSinyx/dendrite-0.8.5

dendrite: 0.8.4 -> 0.8.5

authored by

Jörg Thalheim and committed by
GitHub
ea69f798 a90ecf78

+7 -6
+7 -6
pkgs/servers/dendrite/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, fetchurl, nixosTests, postgresql, postgresqlTestHook }: 2 3 buildGoModule rec { 4 pname = "matrix-dendrite"; 5 - version = "0.8.4"; 6 7 src = fetchFromGitHub { 8 owner = "matrix-org"; 9 repo = "dendrite"; 10 rev = "v${version}"; 11 - sha256 = "sha256-w4un+TdFTzfVZltvo6ZAPQ3B9HJvnGlJW+LmZHuYk1M="; 12 }; 13 14 - vendorSha256 = "sha256-AJ7Hn23aji/cXioDaOSyF8XD3Mr135DZf7KbUW1SoJ4="; 15 16 checkInputs = [ 17 postgresqlTestHook ··· 31 }; 32 33 meta = with lib; { 34 - homepage = "https://matrix.org"; 35 - description = "Dendrite is a second-generation Matrix homeserver written in Go!"; 36 license = licenses.asl20; 37 maintainers = teams.matrix.members; 38 platforms = platforms.unix;
··· 1 + { lib, buildGoModule, fetchFromGitHub 2 + , nixosTests, postgresql, postgresqlTestHook }: 3 4 buildGoModule rec { 5 pname = "matrix-dendrite"; 6 + version = "0.8.5"; 7 8 src = fetchFromGitHub { 9 owner = "matrix-org"; 10 repo = "dendrite"; 11 rev = "v${version}"; 12 + sha256 = "sha256-MPWvBUI6Mqt3f5UY6lpTBwPpihW+QSNq1M3FnIff+mM="; 13 }; 14 15 + vendorSha256 = "sha256-OXy2xuwTLPNvBnVB6wj/YRW/XMiekjTubRRPVX9bxdQ="; 16 17 checkInputs = [ 18 postgresqlTestHook ··· 32 }; 33 34 meta = with lib; { 35 + homepage = "https://matrix-org.github.io/dendrite"; 36 + description = "A second-generation Matrix homeserver written in Go"; 37 license = licenses.asl20; 38 maintainers = teams.matrix.members; 39 platforms = platforms.unix;