2021-08-17 03:42:11 +01:00
|
|
|
{ ctags, fetchurl, lib, libressl, ncurses, pkg-config, stdenv }:
|
2021-03-26 20:58:40 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "catgirl";
|
2021-08-17 03:42:11 +01:00
|
|
|
version = "1.9a";
|
2021-03-26 20:58:40 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://git.causal.agency/catgirl/snapshot/${pname}-${version}.tar.gz";
|
2021-08-17 03:42:11 +01:00
|
|
|
sha256 = "sha256-MEm5mrrWfNp+mBHFjGSOGvvfvBJ+Ho/K+mPUxzJDkV0=";
|
2021-03-26 20:58:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ ctags pkg-config ];
|
2021-08-14 11:37:31 +01:00
|
|
|
buildInputs = [ libressl ncurses ];
|
2021-03-26 20:58:40 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|