1{ lib, fetchFromGitHub, rustPlatform }:
2
3rustPlatform.buildRustPackage rec {
4 pname = "void";
5 version = "1.1.5";
6
7 src = fetchFromGitHub {
8 owner = "spacejam";
9 repo = "void";
10 rev = version;
11 sha256 = "08vazw4rszqscjz988k89z28skyj3grm81bm5iwknxxagmrb20fz";
12 };
13
14 # The tests are long-running and not that useful
15 doCheck = false;
16
17 cargoSha256 = "1wh1yb02w5afghd19i2s0v8mq4lq20djsljrr44xciq68bqfdcp0";
18
19 meta = with lib; {
20 description = "Terminal-based personal organizer";
21 homepage = "https://github.com/spacejam/void";
22 license = licenses.gpl3;
23 maintainers = with maintainers; [ spacekookie ];
24 };
25}