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

41 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "fd";
2019-09-15 21:28:10 +00:00
version = "7.4.0";
src = fetchFromGitHub {
owner = "sharkdp";
repo = "fd";
rev = "v${version}";
2019-09-15 21:28:10 +00:00
sha256 = "108p1p9bxhg4qzwfs6wqcakcvlpqw3w498jkz1vhmg6jp1mbmgdr";
};
2019-09-15 21:28:10 +00:00
cargoSha256 = "0ylanxcb1vrhvm9h3lvq8nh28362wi5hjy0pqdv5lh40pphcknnz";
2017-10-26 21:08:49 +00:00
preFixup = ''
2019-02-13 20:45:31 +00:00
install -Dm644 "$src/doc/fd.1" "$out/man/man1/fd.1"
2017-11-16 09:58:32 +00:00
2019-02-13 20:45:31 +00:00
install -Dm644 target/release/build/fd-find-*/out/fd.bash \
"$out/share/bash-completion/completions/fd.bash"
install -Dm644 target/release/build/fd-find-*/out/fd.fish \
"$out/share/fish/vendor_completions.d/fd.fish"
install -Dm644 target/release/build/fd-find-*/out/_fd \
"$out/share/zsh/site-functions/_fd"
2017-10-26 21:08:49 +00:00
'';
meta = with stdenv.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 ];
maintainers = with maintainers; [ dywedir globin ];
2017-10-26 21:08:49 +00:00
platforms = platforms.all;
};
}