catgirl.nix (674B)
1 2 {lib, stdenv, fetchurl, ncurses, libressl, man, pkg-config, ctags}: 3 4 stdenv.mkDerivation rec { 5 pname = "catgirl"; 6 version = "1.6"; 7 8 src = fetchurl { 9 url = "https://git.causal.agency/catgirl/snapshot/${pname}-${version}.tar.gz"; 10 sha256 = "0shg02zidqqmvywqqsaazlgg9rd5lhhrvjx6n0lzmdfaawxywciv"; 11 }; 12 13 nativeBuildInputs = [ pkg-config ctags ]; 14 buildInputs = [ ncurses libressl man ]; 15 strictDeps = true; 16 17 meta = with lib; { 18 homepage = "https://git.causal.agency/catgirl/about/"; 19 license = licenses.gpl3Plus; 20 description = "A TLS-only terminal IRC client"; 21 platforms = platforms.unix; 22 maintainers = with maintainers; [ xfnw ]; 23 }; 24 } 25 26