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 12:41:23 +01:00
|
|
|
pname = "void";
|
2019-01-07 18:01:23 +00:00
|
|
|
version = "1.1.5";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "spacejam";
|
|
|
|
repo = "void";
|
2019-09-09 00:38:31 +01: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
|
|
|
|
2021-05-07 12:00:49 +01:00
|
|
|
cargoSha256 = "1wh1yb02w5afghd19i2s0v8mq4lq20djsljrr44xciq68bqfdcp0";
|
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 02:11:51 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|