fselect: install manpage
This commit is contained in:
parent
ac184e3c6b
commit
6aae443d0a
1 changed files with 7 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, rustPlatform }:
|
||||
{ stdenv, fetchFromGitHub, rustPlatform, installShellFiles }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "fselect";
|
||||
|
@ -13,6 +13,12 @@ rustPlatform.buildRustPackage rec {
|
|||
|
||||
cargoSha256 = "0mjd9nmaggsszf0kx68yrvy3fqbn35v34c7q3584fv50ipqn6drb";
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
postInstall = ''
|
||||
installManPage docs/fselect.1
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Find files with SQL-like queries";
|
||||
homepage = "https://github.com/jhspetersson/fselect";
|
||||
|
|
Loading…
Reference in a new issue