Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kirc";
|
|
version = "0.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mcpcpc";
|
|
repo = "kirc";
|
|
rev = version;
|
|
hash = "sha256-LiJZnFQMnyBEqeyyyqM56XXoYjbZPCWLfLX9OB/f+YM=";
|
|
};
|
|
|
|
dontConfigure = true;
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://mcpcpc.github.io/kirc/";
|
|
description = "Tiny IRC client written in C99";
|
|
mainProgram = "kirc";
|
|
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 = [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|