Merge pull request #268002 from Gigahawk/xmpp-bridge

xmpp-bridge: init at 0.6.0
This commit is contained in:
h7x4 2024-01-19 00:05:27 +01:00 committed by GitHub
commit 92de9c5b32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 55 additions and 0 deletions

View File

@ -6779,6 +6779,12 @@
githubId = 127353;
name = "Geoffrey Huntley";
};
gigahawk = {
email = "Jasper Chan";
name = "jasperchan515@gmail.com";
github = "Gigahawk";
githubId = 10356230;
};
gigglesquid = {
email = "jack.connors@protonmail.com";
github = "gigglesquid";

View File

@ -0,0 +1,49 @@
{ lib
, fetchFromGitHub
, stdenv
, pkg-config
, libstrophe
, installShellFiles
}:
stdenv.mkDerivation rec {
pname = "xmpp-bridge";
version = "0.6.0";
src = fetchFromGitHub {
owner = "majewsky";
repo = "xmpp-bridge";
rev = "v${version}";
hash = "sha256-JXhVi2AiV/PmWPfoQJl/N92GAZQ9UxReAiCkiDxgdFY=";
};
nativeBuildInputs = [
installShellFiles
pkg-config
];
buildInputs = [
libstrophe
];
strictDeps = true;
# Makefile is hardcoded to install to /usr, install manually
installPhase = ''
runHook preInstall
install -D -m 0755 build/xmpp-bridge "$out/bin/xmpp-bridge"
installManPage xmpp-bridge.1
runHook postInstall
'';
meta = {
description = "Connect command-line programs to XMPP";
homepage = "https://github.com/majewsky/xmpp-bridge";
license = lib.licenses.gpl3Plus;
mainProgram = "xmpp-bridge";
maintainers = with lib.maintainers; [ gigahawk ];
platforms = lib.platforms.unix;
};
}