about summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authoréclairevoyant <848000+eclairevoyant@users.noreply.github.com>2023-10-16 20:32:33 -0400
committeréclairevoyant <848000+eclairevoyant@users.noreply.github.com>2023-10-16 20:32:33 -0400
commit496319a38c8c3a7efee3e7cfd5cefc24fafd8fe4 (patch)
treeaaab38aee8c5e232a9b404cc8ecfed991f31eb48 /pkgs/applications/window-managers
parent2dc99487cabf2b485158d8b9e74b855a2ab1052a (diff)
picom-allusive: install manpage
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/picom/picom-allusive.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/applications/window-managers/picom/picom-allusive.nix b/pkgs/applications/window-managers/picom/picom-allusive.nix
index a30efaab570f5..8c2747fba7e1b 100644
--- a/pkgs/applications/window-managers/picom/picom-allusive.nix
+++ b/pkgs/applications/window-managers/picom/picom-allusive.nix
@@ -1,4 +1,4 @@
-{ picom, lib, fetchFromGitHub }:
+{ picom, lib, fetchFromGitHub, installShellFiles }:
 
 picom.overrideAttrs (oldAttrs: rec {
   pname = "picom-allusive";
@@ -11,8 +11,11 @@ picom.overrideAttrs (oldAttrs: rec {
     hash = "sha256-1zWntz2QKp/O9ZuOUZy9NkCNXFsBqRRvcd0SAr+7G/o=";
   };
 
+  nativeBuildInputs = [ installShellFiles ] ++ oldAttrs.nativeBuildInputs;
+
   postInstall = ''
     chmod +x $out/bin/picom-trans
+    installManPage $src/man/picom.1.gz
   '' + (lib.optionalString (oldAttrs ? postInstall) oldAttrs.postInstall);
 
   meta = {