zncModules: backlog init at 2017-06-13

+20
+20
pkgs/applications/networking/znc/modules.nix
··· 15 15 16 16 in rec { 17 17 18 + backlog = zncDerivation rec { 19 + name = "znc-backlog-${version}"; 20 + version = "git-2017-06-13"; 21 + module_name = "backlog"; 22 + 23 + src = fetchFromGitHub { 24 + owner = "FruitieX"; 25 + repo = "znc-backlog"; 26 + rev = "42e8f439808882d2dae60f2a161eabead14e4b0d"; 27 + sha256 = "1k7ifpqqzzf2j7w795q4mx1nvmics2higzjqr3mid3lp43sqg5s6"; 28 + }; 29 + 30 + meta = with stdenv.lib; { 31 + description = "Request backlog for IRC channels."; 32 + homepage = https://github.com/fruitiex/znc-backlog/; 33 + license = licenses.asl20; 34 + maintainers = with maintainers; [ infinisil ]; 35 + }; 36 + }; 37 + 18 38 clientbuffer = zncDerivation rec { 19 39 name = "znc-clientbuffer-${version}"; 20 40 version = "git-2015-08-27";