lol
1{
2 lib,
3 rustPlatform,
4 fetchFromGitHub,
5}:
6
7rustPlatform.buildRustPackage rec {
8 pname = "hunt";
9 version = "3.0.0";
10
11 src = fetchFromGitHub {
12 owner = "LyonSyonII";
13 repo = "hunt-rs";
14 rev = "v${version}";
15 sha256 = "sha256-aNU4Ik033+kl9ZPHFzaAXZ6Hs+b7m5s0lpr1oovmWm0=";
16 };
17
18 cargoHash = "sha256-rf/aBxuiv6c0cUJcFTCYoQPIEwCfhQQZqVSk0BxSzfQ=";
19
20 meta = with lib; {
21 description = "Simplified Find command made with Rust";
22 homepage = "https://github.com/LyonSyonII/hunt-rs";
23 license = licenses.mit;
24 maintainers = with maintainers; [ dit7ya ];
25 mainProgram = "hunt";
26 };
27}