forked from mirrors/nixpkgs
catgirl: init at 1.6
This commit is contained in:
parent
a82ecfbde2
commit
96b9e5353e
23
pkgs/applications/networking/irc/catgirl/default.nix
Normal file
23
pkgs/applications/networking/irc/catgirl/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ ctags, fetchurl, lib, libressl, man, ncurses, pkg-config, stdenv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "catgirl";
|
||||
version = "1.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://git.causal.agency/catgirl/snapshot/${pname}-${version}.tar.gz";
|
||||
sha256 = "0shg02zidqqmvywqqsaazlgg9rd5lhhrvjx6n0lzmdfaawxywciv";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -21641,6 +21641,8 @@ in
|
|||
|
||||
catfs = callPackage ../os-specific/linux/catfs { };
|
||||
|
||||
catgirl = callPackage ../applications/networking/irc/catgirl { };
|
||||
|
||||
catimg = callPackage ../tools/misc/catimg { };
|
||||
|
||||
catt = callPackage ../applications/video/catt { };
|
||||
|
|
Loading…
Reference in a new issue