nixpkgs/pkgs/tools/misc/hunt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
579 B
Nix
Raw Normal View History

2022-09-30 18:16:09 +02:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "hunt";
2023-06-03 13:50:54 +02:00
version = "2.0.0";
2022-09-30 18:16:09 +02:00
src = fetchFromGitHub {
owner = "LyonSyonII";
repo = "hunt-rs";
rev = "v${version}";
2023-06-03 13:50:54 +02:00
sha256 = "sha256-TwxNVT2x9Y0jnLXiIquf/bQ31B+2VwFfh9EFbJQHpt4=";
2022-09-30 18:16:09 +02:00
};
2023-06-03 13:50:54 +02:00
cargoHash = "sha256-GU3AXZJ8yGFnj0SXRezS/YI6aS/lJowwo+GBBv5wNik=";
2022-09-30 18:16:09 +02:00
meta = with lib; {
description = "Simplified Find command made with Rust";
homepage = "https://github.com/LyonSyonII/hunt";
license = licenses.mit;
maintainers = with maintainers; [ dit7ya ];
};
}