Merge pull request #129214 from kidonng/patch-1

sd: install man page and shell completions
This commit is contained in:
Oleksii Filonenko 2021-07-04 12:16:13 +03:00 committed by GitHub
commit de1039e066
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security
{ lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, Security
}:
rustPlatform.buildRustPackage rec {
@ -14,8 +14,17 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "1iwgy9zzdxay6hb9pz47jchy03jrsy5csxijlq4i228qhqnvq1lr";
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
preFixup = ''
installManPage $releaseDir/build/sd-*/out/sd.1
installShellCompletion $releaseDir/build/sd-*/out/sd.{bash,fish}
installShellCompletion --zsh $releaseDir/build/sd-*/out/_sd
'';
meta = with lib; {
description = "Intuitive find & replace CLI (sed alternative)";
homepage = "https://github.com/chmln/sd";