nixpkgs/pkgs/by-name/hu/hunt/package.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-11-14 02:49:19 +00:00
version = "3.0.0";
2022-09-30 16:16:09 +00:00
src = fetchFromGitHub {
owner = "LyonSyonII";
repo = "hunt-rs";
rev = "v${version}";
2024-11-14 02:49:19 +00:00
sha256 = "sha256-aNU4Ik033+kl9ZPHFzaAXZ6Hs+b7m5s0lpr1oovmWm0=";
2022-09-30 16:16:09 +00:00
};
2024-11-14 02:49:19 +00:00
cargoHash = "sha256-6sr0PU/Gb3CZ+RzvnEcu/v/F3PMyednCEk5wPSvwgmQ=";
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
};
}