summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schleifenbaum <johannes@js-webcoding.de>2021-06-02 08:38:39 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2021-06-02 18:00:01 +0000
commit424a8e18f5831e65ed3fa15720c55aaa800fb7db (patch)
tree9058826d7565a429e7b460814c1db96fd8bf4378
parentMerge pull request #125341 from hercules-ci/backport-podman-improvements (diff)
downloadnixpkgs-origin/backport-125333-to-release-21.05.tar.gz
pantalaimon: install manualsorigin/backport-125333-to-release-21.05
(cherry picked from commit f42a1d9df5a413cd80b36081922aaf3b7c33f8e6)
-rw-r--r--pkgs/applications/networking/instant-messengers/pantalaimon/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix b/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix
index dd46b64e4f64..214675349936 100644
--- a/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix
+++ b/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix
@@ -1,7 +1,7 @@
{ lib, stdenv, buildPythonApplication, fetchFromGitHub, pythonOlder,
attrs, aiohttp, appdirs, click, keyring, Logbook, peewee, janus,
prompt_toolkit, matrix-nio, dbus-python, pydbus, notify2, pygobject3,
- setuptools, fetchpatch,
+ setuptools, fetchpatch, installShellFiles,
pytest, faker, pytest-aiohttp, aioresponses,
@@ -56,6 +56,10 @@ buildPythonApplication rec {
aioresponses
];
+ nativeBuildInputs = [
+ installShellFiles
+ ];
+
# darwin has difficulty communicating with server, fails some integration tests
doCheck = !stdenv.isDarwin;
@@ -63,6 +67,10 @@ buildPythonApplication rec {
pytest
'';
+ postInstall = ''
+ installManPage docs/man/*.[1-9]
+ '';
+
meta = with lib; {
description = "An end-to-end encryption aware Matrix reverse proxy daemon";
homepage = "https://github.com/matrix-org/pantalaimon";