fd: 4.0.0 -> 5.0.0

This commit is contained in:
dywedir 2017-10-27 00:08:49 +03:00
parent 2b496a80ff
commit e61ef03c02

View file

@ -2,18 +2,23 @@
rustPlatform.buildRustPackage rec {
name = "fd-${version}";
version = "4.0.0";
version = "5.0.0";
src = fetchFromGitHub {
owner = "sharkdp";
repo = "fd";
rev = "v${version}";
sha256 = "1aw4pgsmvzzqlvbxzv5jnw42nf316qfhvr50b58iqi2dxy8z8cmv";
sha256 = "17y2fr3faaf32lv171ppkgi55v5zxq97jiilsgmjcn00rd9i6v0j";
};
cargoSha256 = "1v9wg4dq4c7i85bkdhd79bj8gx7200z6np05wsyj2ycbv97p095j";
cargoSha256 = "17f4plyj6mnz0d9f4ykgbmddsdp6c3f6q4kmgj406p49xsf0jjkc";
meta = {
preFixup = ''
mkdir -p "$out/man/man1"
cp "$src/doc/fd.1" "$out/man/man1"
'';
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`.
@ -22,7 +27,7 @@ rustPlatform.buildRustPackage rec {
it provides sensible (opinionated) defaults for 80% of the use cases.
'';
homepage = "https://github.com/sharkdp/fd";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.all;
license = with licenses; [ asl20 /* or */ mit ];
platforms = platforms.all;
};
}