hunt: init at 1.7.6

This commit is contained in:
Mostly Void 2022-09-30 21:46:09 +05:30
parent b881869205
commit fbc3abdfe6
No known key found for this signature in database
GPG key ID: E2B7342D0CAA82C2
2 changed files with 27 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -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";