lol

i3status-rust: Add manpage to output (#439523)

authored by

Sandro and committed by
GitHub
f0667dc5 32bfa80c

+9
+9
pkgs/by-name/i3/i3status-rust/package.nix
··· 4 4 fetchFromGitHub, 5 5 pkg-config, 6 6 makeWrapper, 7 + installShellFiles, 7 8 dbus, 8 9 libpulseaudio, 9 10 notmuch, ··· 12 13 lm_sensors, 13 14 iw, 14 15 iproute2, 16 + pandoc, 15 17 pipewire, 16 18 withICUCalendar ? false, 17 19 withPipewire ? true, ··· 34 36 nativeBuildInputs = [ 35 37 pkg-config 36 38 makeWrapper 39 + installShellFiles 40 + pandoc 37 41 ] 38 42 ++ (lib.optionals withPipewire [ rustPlatform.bindgenHook ]); 39 43 ··· 59 63 --replace "/usr/share/i3status-rust" "$out/share" 60 64 ''; 61 65 66 + postBuild = '' 67 + cargo xtask generate-manpage 68 + ''; 69 + 62 70 postInstall = '' 63 71 mkdir -p $out/share 64 72 cp -R examples files/* $out/share 73 + installManPage man/* 65 74 ''; 66 75 67 76 postFixup = ''