lol

Merge pull request #30840 from dywedir/fd

fd: 4.0.0 -> 5.0.0

authored by

Jörg Thalheim and committed by
GitHub
a83e7190 bf33b4fb

+11 -6
+11 -6
pkgs/tools/misc/fd/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 name = "fd-${version}"; 5 - version = "4.0.0"; 5 + version = "5.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "sharkdp"; 9 9 repo = "fd"; 10 10 rev = "v${version}"; 11 - sha256 = "1aw4pgsmvzzqlvbxzv5jnw42nf316qfhvr50b58iqi2dxy8z8cmv"; 11 + sha256 = "17y2fr3faaf32lv171ppkgi55v5zxq97jiilsgmjcn00rd9i6v0j"; 12 12 }; 13 13 14 - cargoSha256 = "1v9wg4dq4c7i85bkdhd79bj8gx7200z6np05wsyj2ycbv97p095j"; 14 + cargoSha256 = "17f4plyj6mnz0d9f4ykgbmddsdp6c3f6q4kmgj406p49xsf0jjkc"; 15 + 16 + preFixup = '' 17 + mkdir -p "$out/man/man1" 18 + cp "$src/doc/fd.1" "$out/man/man1" 19 + ''; 15 20 16 - meta = { 21 + meta = with stdenv.lib; { 17 22 description = "A simple, fast and user-friendly alternative to find"; 18 23 longDescription = '' 19 24 `fd` is a simple, fast and user-friendly alternative to `find`. ··· 22 27 it provides sensible (opinionated) defaults for 80% of the use cases. 23 28 ''; 24 29 homepage = "https://github.com/sharkdp/fd"; 25 - license = stdenv.lib.licenses.mit; 26 - platforms = stdenv.lib.platforms.all; 30 + license = with licenses; [ asl20 /* or */ mit ]; 31 + platforms = platforms.all; 27 32 }; 28 33 }