2017-07-31 00:21:36 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
name = "fd-${version}";
|
2018-03-26 12:44:32 +01:00
|
|
|
version = "7.0.0";
|
2017-07-31 00:21:36 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sharkdp";
|
|
|
|
repo = "fd";
|
|
|
|
rev = "v${version}";
|
2018-03-26 12:44:32 +01:00
|
|
|
sha256 = "0qykzkwrj4w3i5h1a328kadd7fgd91w0z2n4xr6i3csyaiwwgd1x";
|
2017-07-31 00:21:36 +01:00
|
|
|
};
|
|
|
|
|
2018-03-26 12:44:32 +01:00
|
|
|
cargoSha256 = "1qicgfaqzjm7sjzgxkci6bg495n227pyicj4ycds5z6mfy15hi4q";
|
2017-07-31 00:21:36 +01:00
|
|
|
|
2017-10-26 22:08:49 +01:00
|
|
|
preFixup = ''
|
|
|
|
mkdir -p "$out/man/man1"
|
|
|
|
cp "$src/doc/fd.1" "$out/man/man1"
|
2017-11-16 09:58:32 +00:00
|
|
|
|
2018-02-13 10:51:02 +00:00
|
|
|
mkdir -p "$out/share/"{bash-completion/completions,fish/vendor_completions.d,zsh/site-functions}
|
2017-12-11 13:20:23 +00:00
|
|
|
cp target/release/build/fd-find-*/out/fd.bash "$out/share/bash-completion/completions/"
|
2018-02-13 10:51:02 +00:00
|
|
|
cp target/release/build/fd-find-*/out/fd.fish "$out/share/fish/vendor_completions.d/"
|
2017-11-16 09:58:32 +00:00
|
|
|
cp target/release/build/fd-find-*/out/_fd "$out/share/zsh/site-functions/"
|
2017-10-26 22:08:49 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-07-31 00:21:36 +01:00
|
|
|
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 22:08:49 +01:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2018-02-10 19:55:03 +00:00
|
|
|
maintainers = with maintainers; [ dywedir ];
|
2017-10-26 22:08:49 +01:00
|
|
|
platforms = platforms.all;
|
2017-07-31 00:21:36 +01:00
|
|
|
};
|
|
|
|
}
|