6 stdenv.mkDerivation rec {
10 src = fetchFromGitHub {
14 hash = "sha256-SXPtSFjGPLgORG9OCSCEStzNzdGZFzCx72YOrW288MU=";
19 installFlags = [ "PREFIX=$(out)" ];
22 homepage = "https://mcpcpc.github.io/kirc/";
23 description = "Tiny IRC client written in C99";
26 kirc is a tiny open-source Internet Relay Chat (IRC) client designed with
27 usability and cross-platform compatibility in mind.
30 - No dependencies other than a C99 compiler.
31 - Simple Authentication and Security Layer (SASL) procotol support.
32 - Client-to-client (CTCP) protocol support.
33 - Transport Layer Security (TLS) protocol support (via external
35 - Simple chat history logging.
36 - Asynchronous message handling.
37 - Multi-channel joining at server connection.
38 - Full support for all RFC 2812 commands.
39 - Easy customized color scheme definition.
41 license = licenses.mit;
42 maintainers = with maintainers; [ AndersonTorres ];
43 platforms = platforms.unix;