2021-01-25 08:26:54 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
rustPlatform,
|
|
|
|
}:
|
2019-01-07 18:01:23 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "void";
|
2019-01-07 18:01:23 +00:00
|
|
|
version = "1.1.5";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "spacejam";
|
|
|
|
repo = "void";
|
2019-09-08 23:38:31 +00:00
|
|
|
rev = version;
|
2019-01-07 18:01:23 +00:00
|
|
|
sha256 = "08vazw4rszqscjz988k89z28skyj3grm81bm5iwknxxagmrb20fz";
|
|
|
|
};
|
|
|
|
|
|
|
|
# The tests are long-running and not that useful
|
2019-01-07 20:21:22 +00:00
|
|
|
doCheck = false;
|
2019-01-07 18:01:23 +00:00
|
|
|
|
2024-07-03 12:29:10 +00:00
|
|
|
cargoHash = "sha256-4LLm8EIGR9YJyVlSLRsQmBJc0QZaxBQafE4VLsDyAfI=";
|
2019-01-07 18:01:23 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-01-07 18:01:23 +00:00
|
|
|
description = "Terminal-based personal organizer";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/spacejam/void";
|
2019-01-07 20:21:22 +00:00
|
|
|
license = licenses.gpl3;
|
2019-01-07 18:01:23 +00:00
|
|
|
maintainers = with maintainers; [ spacekookie ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "void";
|
2019-01-07 18:01:23 +00:00
|
|
|
};
|
|
|
|
}
|