miller: copy manpage to $man

This commit is contained in:
Profpatsch 2023-12-14 16:00:38 +01:00
parent 80b93fa3e8
commit cb37959f99

View file

@ -11,8 +11,15 @@ buildGoModule rec {
sha256 = "sha256-g2Jnqo3U9acyqohGpcEEogq871qJQTc7k0/oIawAQW8=";
};
outputs = [ "out" "man" ];
vendorHash = "sha256-/1/FTQL3Ki8QzL+1J4Ah8kwiJyGPd024di/1MC8gtkE=";
postInstall = ''
mkdir -p $man/share/man/man1
mv ./man/mlr.1 $man/share/man/man1
'';
subPackages = [ "cmd/mlr" ];
meta = with lib; {