Merge pull request #171587 from jugendhacker/add/xmppc

xmppc: init at 0.1.2
This commit is contained in:
Sandro 2022-06-06 17:52:41 +02:00 committed by GitHub
commit baaadec9ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 47 additions and 0 deletions

View File

@ -6425,6 +6425,13 @@
githubId = 1189739;
name = "Julio Borja Barra";
};
jugendhacker = {
name = "j.r";
email = "j.r@jugendhacker.de";
github = "jugendhacker";
githubId = 12773748;
matrix = "@j.r:chaos.jetzt";
};
juliendehos = {
email = "dehos@lisic.univ-littoral.fr";
github = "juliendehos";

View File

@ -0,0 +1,38 @@
{lib, stdenv, fetchFromGitea, autoconf-archive, autoreconfHook, pkg-config, libstrophe, glib, gpgme }:
stdenv.mkDerivation rec {
pname = "xmppc";
version = "0.1.2";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "Anoxinon_e.V.";
repo = "xmppc";
rev = version;
sha256 = "07cy3j4g7vycagdiva3dqb59361lw7s5f2yydpczmyih29v7hkm8";
};
nativeBuildInputs = [
autoconf-archive
autoreconfHook
pkg-config
];
buildInputs = [
libstrophe
glib
gpgme
];
preAutoreconf = ''
mkdir m4
'';
meta = with lib; {
description = "Command Line Interface Tool for XMPP";
homepage = "https://codeberg.org/Anoxinon_e.V./xmppc";
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = [ maintainers.jugendhacker ];
};
}

View File

@ -30891,6 +30891,8 @@ with pkgs;
xmountains = callPackage ../applications/graphics/xmountains { };
xmppc = callPackage ../applications/networking/instant-messengers/xmppc {};
libxpdf = callPackage ../applications/misc/xpdf/libxpdf.nix { };
xpra = callPackage ../tools/X11/xpra { };