2019-01-07 18:01:23 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
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
|
|
|
|
2020-02-14 02:00:26 +00:00
|
|
|
# Delete this on next update; see #79975 for details
|
|
|
|
legacyCargoFetcher = true;
|
|
|
|
|
2019-05-25 11:03:08 +00:00
|
|
|
cargoSha256 = "03g7155jpg8k1ymk95m8rlhlszkxyq0rv32966n4gk5yziijvk4k";
|
2019-01-07 18:01:23 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Terminal-based personal organizer";
|
|
|
|
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 ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|