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

24 lines
664 B
Nix
Raw Normal View History

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 ];
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 ];
};
}