about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/irc/kirc/default.nix
blob: c21a444b61c1e2da941b7e30355e9aa11e7ed2eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ lib
, stdenv
, fetchFromGitHub
}:

stdenv.mkDerivation rec {
  pname = "kirc";
  version = "0.3.2";

  src = fetchFromGitHub {
    owner = "mcpcpc";
    repo = pname;
    rev = version;
    hash = "sha256-SXPtSFjGPLgORG9OCSCEStzNzdGZFzCx72YOrW288MU=";
  };

  dontConfigure = true;

  installFlags = [ "PREFIX=$(out)" ];

  meta = with lib; {
    homepage = "https://mcpcpc.github.io/kirc/";
    description = "Tiny IRC client written in C99";
    longDescription = ''
      kirc is a tiny open-source Internet Relay Chat (IRC) client designed with
      usability and cross-platform compatibility in mind.

      It features:
      - No dependencies other than a C99 compiler.
      - Simple Authentication and Security Layer (SASL) procotol support.
      - Client-to-client (CTCP) protocol support.
      - Transport Layer Security (TLS) protocol support (via external
        utilities).
      - Simple chat history logging.
      - Asynchronous message handling.
      - Multi-channel joining at server connection.
      - Full support for all RFC 2812 commands.
      - Easy customized color scheme definition.
    '';
    license = licenses.mit;
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = platforms.unix;
  };
}