From 5ef030a22cd4651b45f6d71c7fe3bb157a252967 Mon Sep 17 00:00:00 2001 From: Martin Joerg Date: Mon, 27 Oct 2025 08:59:01 +0000 Subject: [PATCH] tahoe-lafs: install man pages --- pkgs/by-name/ta/tahoe-lafs/package.nix | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ta/tahoe-lafs/package.nix b/pkgs/by-name/ta/tahoe-lafs/package.nix index 5ff134b95b73..0850840ca3fb 100644 --- a/pkgs/by-name/ta/tahoe-lafs/package.nix +++ b/pkgs/by-name/ta/tahoe-lafs/package.nix @@ -2,6 +2,7 @@ lib, python3Packages, fetchFromGitHub, + installShellFiles, texinfo, versionCheckHook, }: @@ -26,6 +27,7 @@ python3Packages.buildPythonApplication rec { "out" "doc" "info" + "man" ]; # Remove broken and expensive tests. @@ -46,13 +48,16 @@ python3Packages.buildPythonApplication rec { hatchling ]; - nativeBuildInputs = with python3Packages; [ - # docs + nativeBuildInputs = # docs + [ + installShellFiles + texinfo + ] + ++ (with python3Packages; [ recommonmark sphinx sphinx-rtd-theme - texinfo - ]; + ]); dependencies = with python3Packages; @@ -99,6 +104,8 @@ python3Packages.buildPythonApplication rec { make info mkdir -p "$info/share/info" cp -rv _build/texinfo/*.info "$info/share/info" + + installManPage man/man*/* ) '';