1{
2 lib,
3 rustPlatform,
4 fetchFromGitHub,
5}:
6rustPlatform.buildRustPackage rec {
7 pname = "lacy";
8 version = "0.2.2";
9
10 src = fetchFromGitHub {
11 owner = "timothebot";
12 repo = "lacy";
13 rev = "v${version}";
14 hash = "sha256-LTLLpzv5wX8i1Hmg651HrKzxJS/fSgIs5rrAA2tNg74=";
15 };
16
17 cargoHash = "sha256-N5avoN3QCCYMF29Cvbwha+iBAXPncOttWxGpVZ70EqI=";
18
19 doCheck = false;
20
21 meta = {
22 description = "Fast magical cd alternative for lacy terminal navigators";
23 homepage = "https://github.com/timothebot/lacy";
24 license = lib.licenses.mit;
25 maintainers = with lib.maintainers; [noverby];
26 mainProgram = "lacy";
27 };
28}