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

40 lines
1.1 KiB
Nix
Raw Normal View History

2020-03-19 01:43:22 +00:00
{ lib, fetchFromGitHub, rustPlatform, installShellFiles }:
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "fd";
version = "7.5.0";
src = fetchFromGitHub {
owner = "sharkdp";
repo = "fd";
rev = "v${version}";
sha256 = "029xr7l751dy167hfzrd030llkaiy8j585h1d4l6391fgrsvnav7";
};
cargoSha256 = "0lq6da2f6xywyhzyyrpph96d8b9vpdzakzipci167g6hhh232b5b";
2020-03-19 01:43:22 +00:00
nativeBuildInputs = [ installShellFiles ];
2017-10-26 21:08:49 +00:00
preFixup = ''
2020-03-19 01:43:22 +00:00
installManPage "$src/doc/fd.1"
(cd target/release/build/fd-find-*/out
installShellCompletion fd.{bash,fish}
installShellCompletion --zsh _fd)
2017-10-26 21:08:49 +00:00
'';
2020-03-19 01:43:22 +00: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 21:08:49 +00:00
license = with licenses; [ asl20 /* or */ mit ];
2020-02-28 02:46:23 +00:00
maintainers = with maintainers; [ dywedir globin ma27 ];
2017-10-26 21:08:49 +00:00
platforms = platforms.all;
};
}