tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
kirc: init at 0.2.7
AndersonTorres
4 years ago
5853503f
c50de910
+46
2 changed files
expand all
collapse all
unified
split
pkgs
applications
networking
irc
kirc
default.nix
top-level
all-packages.nix
+44
pkgs/applications/networking/irc/kirc/default.nix
···
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
}:
5
5
+
6
6
+
stdenv.mkDerivation rec {
7
7
+
pname = "kirc";
8
8
+
version = "0.2.7";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "mcpcpc";
12
12
+
repo = pname;
13
13
+
rev = version;
14
14
+
hash = "sha256-iaqj4xB15DB3w/RaiCOMdAu8eONhTw1Dz0j5kykAHV4=";
15
15
+
};
16
16
+
17
17
+
dontConfigure = true;
18
18
+
19
19
+
makeFlags = [ "PREFIX=${placeholder "out"}" ];
20
20
+
21
21
+
meta = with lib; {
22
22
+
homepage = "http://kirc.io/";
23
23
+
description = "Tiny IRC client written in C99";
24
24
+
longDescription = ''
25
25
+
kirc is a tiny open-source Internet Relay Chat (IRC) client designed with
26
26
+
usability and cross-platform compatibility in mind.
27
27
+
28
28
+
It features:
29
29
+
- No dependencies other than a C99 compiler.
30
30
+
- Simple Authentication and Security Layer (SASL) procotol support.
31
31
+
- Client-to-client (CTCP) protocol support.
32
32
+
- Transport Layer Security (TLS) protocol support (via external
33
33
+
utilities).
34
34
+
- Simple chat history logging.
35
35
+
- Asynchronous message handling.
36
36
+
- Multi-channel joining at server connection.
37
37
+
- Full support for all RFC 2812 commands.
38
38
+
- Easy customized color scheme definition.
39
39
+
'';
40
40
+
license = licenses.mit;
41
41
+
maintainers = with maintainers; [ AndersonTorres ];
42
42
+
platforms = platforms.unix;
43
43
+
};
44
44
+
}
+2
pkgs/top-level/all-packages.nix
···
24846
24846
24847
24847
irssi_fish = callPackage ../applications/networking/irc/irssi/fish { };
24848
24848
24849
24849
+
kirc = callPackage ../applications/networking/irc/kirc { };
24850
24850
+
24849
24851
ir.lv2 = callPackage ../applications/audio/ir.lv2 { };
24850
24852
24851
24853
istioctl = callPackage ../applications/networking/cluster/istioctl { };