Merge pull request #115159 from xfnw/master

This commit is contained in:
Sandro 2021-03-27 01:34:41 +01:00 committed by GitHub
commit b37b2f38fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 0 deletions

View File

@ -10430,6 +10430,12 @@
githubId = 36407913;
name = "Uli Baum";
};
xfnw = {
email = "xfnw+nixos@riseup.net";
github = "xfnw";
githubId = 66233223;
name = "Owen";
};
xfix = {
email = "konrad@borowski.pw";
github = "xfix";

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

View File

@ -21892,6 +21892,8 @@ in
catfs = callPackage ../os-specific/linux/catfs { };
catgirl = callPackage ../applications/networking/irc/catgirl { };
catimg = callPackage ../tools/misc/catimg { };
catt = callPackage ../applications/video/catt { };