1{
2 lib,
3 rustPlatform,
4 fetchFromGitHub,
5}:
6
7rustPlatform.buildRustPackage rec {
8 pname = "funzzy";
9 version = "1.5.0";
10
11 src = fetchFromGitHub {
12 owner = "cristianoliveira";
13 repo = "funzzy";
14 rev = "v${version}";
15 hash = "sha256-3EHZvgHlM3ldX6SEyqGf6MZIrDFOLXbKTZnJNczT570=";
16 };
17
18 cargoHash = "sha256-n9UHyr7W4hrN0+2dsYAYqkP/uzBv74p5XHU0g2MReJY=";
19
20 meta = with lib; {
21 description = "Lightweight watcher";
22 homepage = "https://github.com/cristianoliveira/funzzy";
23 changelog = "https://github.com/cristianoliveira/funzzy/releases/tag/${src.rev}";
24 license = licenses.mit;
25 maintainers = with maintainers; [ figsoda ];
26 };
27}