hunt: init at 1.7.6

+27
+25
pkgs/tools/misc/hunt/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "hunt"; 8 + version = "1.7.6"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "LyonSyonII"; 12 + repo = "hunt-rs"; 13 + rev = "v${version}"; 14 + sha256 = "sha256-mNQY2vp4wNDhVqrFNVS/RBXVi9EMbTZ6pE0Z79dLUeM="; 15 + }; 16 + 17 + cargoSha256 = "sha256-hjvJ9E5U6zGSWUXNDdu0GwUcd7uZeconfjiCSaEzZXU="; 18 + 19 + meta = with lib; { 20 + description = "Simplified Find command made with Rust"; 21 + homepage = "https://github.com/LyonSyonII/hunt"; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ dit7ya ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 4160 4160 4161 4161 huniq = callPackage ../tools/text/huniq { }; 4162 4162 4163 + hunt = callPackage ../tools/misc/hunt { }; 4164 + 4163 4165 hyprland = callPackage ../applications/window-managers/hyprland { 4164 4166 wlroots = wlroots.overrideAttrs (_: { 4165 4167 version = "unstable-2022-06-07";