about summary refs log tree commit diff
path: root/pkgs/tools/misc/hunt
diff options
context:
space:
mode:
authorMostly Void <7rat13@gmail.com>2022-09-30 21:46:09 +0530
committerMostly Void <7rat13@gmail.com>2022-09-30 21:46:42 +0530
commitfbc3abdfe6997dcd6d603d4630aa4834ce7e6515 (patch)
treeb4cea4c889aca8aa1011a9a410d8234011666803 /pkgs/tools/misc/hunt
parentb881869205e82652b4c5ce7ebff3b3fea5a4817b (diff)
hunt: init at 1.7.6
Diffstat (limited to 'pkgs/tools/misc/hunt')
-rw-r--r--pkgs/tools/misc/hunt/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/misc/hunt/default.nix b/pkgs/tools/misc/hunt/default.nix
new file mode 100644
index 0000000000000..6ccb197137dd2
--- /dev/null
+++ b/pkgs/tools/misc/hunt/default.nix
@@ -0,0 +1,25 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "hunt";
+  version = "1.7.6";
+
+  src = fetchFromGitHub {
+    owner = "LyonSyonII";
+    repo = "hunt-rs";
+    rev = "v${version}";
+    sha256 = "sha256-mNQY2vp4wNDhVqrFNVS/RBXVi9EMbTZ6pE0Z79dLUeM=";
+  };
+
+  cargoSha256 = "sha256-hjvJ9E5U6zGSWUXNDdu0GwUcd7uZeconfjiCSaEzZXU=";
+
+  meta = with lib; {
+    description = "Simplified Find command made with Rust";
+    homepage = "https://github.com/LyonSyonII/hunt";
+    license = licenses.mit;
+    maintainers = with maintainers; [ dit7ya ];
+  };
+}