3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/irc/catgirl/default.nix

24 lines
673 B
Nix
Raw Normal View History

2021-03-26 20:58:40 +00:00
{ ctags, fetchurl, lib, libressl, man, ncurses, pkg-config, stdenv }:
stdenv.mkDerivation rec {
pname = "catgirl";
2021-05-30 00:45:42 +01:00
version = "1.8";
2021-03-26 20:58:40 +00:00
src = fetchurl {
url = "https://git.causal.agency/catgirl/snapshot/${pname}-${version}.tar.gz";
2021-05-30 00:45:42 +01:00
sha256 = "0svpd2nqsr55ac98vczyhihs6pvgw7chspf6bdlwl98gch39dxif";
2021-03-26 20:58:40 +00:00
};
nativeBuildInputs = [ ctags pkg-config ];
buildInputs = [ libressl man ncurses ];
strictDeps = true;
meta = with lib; {
homepage = "https://git.causal.agency/catgirl/about/";
license = licenses.gpl3Plus;
description = "A TLS-only terminal IRC client";
platforms = platforms.unix;
maintainers = with maintainers; [ xfnw ];
};
}