nixpkgs/pkgs/tools/misc/fd/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

2020-03-19 02:43:22 +01:00
{ lib, fetchFromGitHub, rustPlatform, installShellFiles }:
rustPlatform.buildRustPackage rec {
2019-08-31 13:41:23 +02:00
pname = "fd";
version = "8.0.0";
src = fetchFromGitHub {
owner = "sharkdp";
repo = "fd";
rev = "v${version}";
sha256 = "0l18xavkj99cydp1dqrph00yq2px339zs6jcim59iq3zln1yn0n7";
};
cargoSha256 = "1sdwbnncs1d45x1iqk3jv3r69fpkzrsxm4kjn89jmvd5nk8blvs2";
2020-03-19 02:43:22 +01:00
nativeBuildInputs = [ installShellFiles ];
2017-10-26 23:08:49 +02:00
preFixup = ''
2020-03-19 02:43:22 +01:00
installManPage "$src/doc/fd.1"
2020-03-20 07:46:50 +01:00
installShellCompletion $releaseDir/build/fd-find-*/out/fd.{bash,fish}
installShellCompletion --zsh $releaseDir/build/fd-find-*/out/_fd
2017-10-26 23:08:49 +02:00
'';
2020-03-19 02:43:22 +01:00
meta = with lib; {
description = "A simple, fast and user-friendly alternative to find";
longDescription = ''
`fd` is a simple, fast and user-friendly alternative to `find`.
While it does not seek to mirror all of `find`'s powerful functionality,
it provides sensible (opinionated) defaults for 80% of the use cases.
'';
homepage = "https://github.com/sharkdp/fd";
2017-10-26 23:08:49 +02:00
license = with licenses; [ asl20 /* or */ mit ];
2020-02-28 03:46:23 +01:00
maintainers = with maintainers; [ dywedir globin ma27 ];
2017-10-26 23:08:49 +02:00
platforms = platforms.all;
};
}