1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

matrix-synapse: 0.16.0 -> 0.16.1

This commit is contained in:
Benjamin Saunders 2016-06-22 11:16:28 -07:00
parent 0fa2f6757a
commit 65005fe302

View file

@ -12,13 +12,13 @@ let
in in
buildPythonApplication rec { buildPythonApplication rec {
name = "matrix-synapse-${version}"; name = "matrix-synapse-${version}";
version = "0.16.0"; version = "0.16.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "matrix-org"; owner = "matrix-org";
repo = "synapse"; repo = "synapse";
rev = "v${version}"; rev = "v${version}";
sha256 = "046lh9s7lpi19akqxfvr361fp8bwcz48w3sqz1vsy2z59iim9xy3"; sha256 = "166y1f74wjkrpks88cp67w33rcs02b4dk815yj93lfla1k9ypg6b";
}; };
patches = [ ./matrix-synapse.patch ]; patches = [ ./matrix-synapse.patch ];
@ -37,9 +37,10 @@ buildPythonApplication rec {
mock setuptoolsTrial mock setuptoolsTrial
]; ];
meta = { meta = with stdenv.lib; {
homepage = https://matrix.org; homepage = https://matrix.org;
description = "Matrix reference homeserver"; description = "Matrix reference homeserver";
license = stdenv.lib.licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.ralith ];
}; };
} }