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

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

27 lines
608 B
Nix
Raw Normal View History

2022-09-30 16:16:09 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "hunt";
2024-05-22 16:13:13 +00:00
version = "2.4.0";
2022-09-30 16:16:09 +00:00
src = fetchFromGitHub {
owner = "LyonSyonII";
repo = "hunt-rs";
rev = "v${version}";
2024-05-22 16:13:13 +00:00
sha256 = "sha256-NKXZECtepuFg6qTuXF9Gnat/vnrygt3UOZb0YUKPqi8=";
2022-09-30 16:16:09 +00:00
};
2024-05-22 16:13:13 +00:00
cargoHash = "sha256-ExwcFJVqQF/RTUyv1FvOCnlB+9Z7uhi/5UUjW7WcXTk=";
2022-09-30 16:16:09 +00:00
meta = with lib; {
description = "Simplified Find command made with Rust";
2024-05-04 00:53:21 +00:00
homepage = "https://github.com/LyonSyonII/hunt-rs";
2022-09-30 16:16:09 +00:00
license = licenses.mit;
maintainers = with maintainers; [ dit7ya ];
2023-11-27 01:17:53 +00:00
mainProgram = "hunt";
2022-09-30 16:16:09 +00:00
};
}