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

40 lines
1.3 KiB
Nix
Raw Normal View History

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