···11+{ stdenv, fetchFromGitHub, rustPlatform }:
22+33+rustPlatform.buildRustPackage rec {
44+ name = "fd-${version}";
55+ version = "2.0.0";
66+77+ src = fetchFromGitHub {
88+ owner = "sharkdp";
99+ repo = "fd";
1010+ rev = "v${version}";
1111+ sha256 = "1xs4y9zf5m0ykl95787jv98xg0a60gkcyyh7kg7qg4xrcgf4qz4j";
1212+ };
1313+1414+ depsSha256 = "1hxf3j4584jgpwrwykx6yil6q6ka9l81qvx6zrbprdxk3pslp049";
1515+1616+ meta = {
1717+ description = "A simple, fast and user-friendly alternative to find";
1818+ longDescription = ''
1919+ `fd` is a simple, fast and user-friendly alternative to `find`.
2020+2121+ While it does not seek to mirror all of `find`'s powerful functionality,
2222+ it provides sensible (opinionated) defaults for 80% of the use cases.
2323+ '';
2424+ homepage = "https://github.com/sharkdp/fd";
2525+ license = stdenv.lib.licenses.mit;
2626+ platforms = stdenv.lib.platforms.all;
2727+ };
2828+}