1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 01:51:24 +00:00
nixpkgs/pkgs/tools/misc/fd/default.nix

39 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
name = "fd-${version}";
2017-12-11 13:20:23 +00:00
version = "6.1.0";
src = fetchFromGitHub {
owner = "sharkdp";
repo = "fd";
rev = "v${version}";
2017-12-11 13:20:23 +00:00
sha256 = "1md6k531ymsg99zc6y8lni4cpfz4rcklwgibq1i5xdam3hs1n2jg";
};
2017-12-11 13:20:23 +00:00
cargoSha256 = "00n2j0mjmd4lrfygnv90mixv3hfv1z56zyqcm957cwq08qavqzf1";
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
mkdir -p "$out/share/"{bash-completion/completions,fish/completions,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/"
2017-11-16 09:58:32 +00:00
cp target/release/build/fd-find-*/out/fd.fish "$out/share/fish/completions/"
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; {
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 ];
platforms = platforms.all;
};
}