depot/pkgs/by-name/xm/xmpp-bridge/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

49 lines
990 B
Nix

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