tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
hunt: init at 1.7.6
Mostly Void
3 years ago
fbc3abdf
b8818692
+27
2 changed files
expand all
collapse all
unified
split
pkgs
tools
misc
hunt
default.nix
top-level
all-packages.nix
+25
pkgs/tools/misc/hunt/default.nix
···
1
1
+
{ lib
2
2
+
, rustPlatform
3
3
+
, fetchFromGitHub
4
4
+
}:
5
5
+
6
6
+
rustPlatform.buildRustPackage rec {
7
7
+
pname = "hunt";
8
8
+
version = "1.7.6";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "LyonSyonII";
12
12
+
repo = "hunt-rs";
13
13
+
rev = "v${version}";
14
14
+
sha256 = "sha256-mNQY2vp4wNDhVqrFNVS/RBXVi9EMbTZ6pE0Z79dLUeM=";
15
15
+
};
16
16
+
17
17
+
cargoSha256 = "sha256-hjvJ9E5U6zGSWUXNDdu0GwUcd7uZeconfjiCSaEzZXU=";
18
18
+
19
19
+
meta = with lib; {
20
20
+
description = "Simplified Find command made with Rust";
21
21
+
homepage = "https://github.com/LyonSyonII/hunt";
22
22
+
license = licenses.mit;
23
23
+
maintainers = with maintainers; [ dit7ya ];
24
24
+
};
25
25
+
}
+2
pkgs/top-level/all-packages.nix
···
4160
4160
4161
4161
huniq = callPackage ../tools/text/huniq { };
4162
4162
4163
4163
+
hunt = callPackage ../tools/misc/hunt { };
4164
4164
+
4163
4165
hyprland = callPackage ../applications/window-managers/hyprland {
4164
4166
wlroots = wlroots.overrideAttrs (_: {
4165
4167
version = "unstable-2022-06-07";