From fbc3abdfe6997dcd6d603d4630aa4834ce7e6515 Mon Sep 17 00:00:00 2001 From: Mostly Void <7rat13@gmail.com> Date: Fri, 30 Sep 2022 21:46:09 +0530 Subject: [PATCH] hunt: init at 1.7.6 --- pkgs/tools/misc/hunt/default.nix | 25 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/tools/misc/hunt/default.nix diff --git a/pkgs/tools/misc/hunt/default.nix b/pkgs/tools/misc/hunt/default.nix new file mode 100644 index 000000000000..6ccb197137dd --- /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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d58ecb7625b5..7d4810991a76 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4160,6 +4160,8 @@ with pkgs; huniq = callPackage ../tools/text/huniq { }; + hunt = callPackage ../tools/misc/hunt { }; + hyprland = callPackage ../applications/window-managers/hyprland { wlroots = wlroots.overrideAttrs (_: { version = "unstable-2022-06-07";