tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
zncModules: backlog init at 2017-06-13
Silvan Mosberger
8 years ago
462f34c4
bfc4d04d
+20
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
znc
modules.nix
+20
pkgs/applications/networking/znc/modules.nix
···
15
15
16
16
in rec {
17
17
18
18
+
backlog = zncDerivation rec {
19
19
+
name = "znc-backlog-${version}";
20
20
+
version = "git-2017-06-13";
21
21
+
module_name = "backlog";
22
22
+
23
23
+
src = fetchFromGitHub {
24
24
+
owner = "FruitieX";
25
25
+
repo = "znc-backlog";
26
26
+
rev = "42e8f439808882d2dae60f2a161eabead14e4b0d";
27
27
+
sha256 = "1k7ifpqqzzf2j7w795q4mx1nvmics2higzjqr3mid3lp43sqg5s6";
28
28
+
};
29
29
+
30
30
+
meta = with stdenv.lib; {
31
31
+
description = "Request backlog for IRC channels.";
32
32
+
homepage = https://github.com/fruitiex/znc-backlog/;
33
33
+
license = licenses.asl20;
34
34
+
maintainers = with maintainers; [ infinisil ];
35
35
+
};
36
36
+
};
37
37
+
18
38
clientbuffer = zncDerivation rec {
19
39
name = "znc-clientbuffer-${version}";
20
40
version = "git-2015-08-27";