nixpkgs/pkgs/tools/misc/void/default.nix

27 lines
679 B
Nix
Raw Normal View History

2019-01-07 21:01:23 +03:00
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
2019-08-31 14:41:23 +03:00
pname = "void";
2019-01-07 21:01:23 +03:00
version = "1.1.5";
src = fetchFromGitHub {
owner = "spacejam";
repo = "void";
2019-09-09 02:38:31 +03:00
rev = version;
2019-01-07 21:01:23 +03:00
sha256 = "08vazw4rszqscjz988k89z28skyj3grm81bm5iwknxxagmrb20fz";
};
# The tests are long-running and not that useful
doCheck = false;
2019-01-07 21:01:23 +03:00
cargoSha256 = "0fnkcjxcsiw9j0ibh4z7zy0m6r5d84q5hvr2darwpckbn9ryrh3k";
2019-01-07 21:01:23 +03:00
meta = with stdenv.lib; {
description = "Terminal-based personal organizer";
homepage = https://github.com/spacejam/void;
license = licenses.gpl3;
2019-01-07 21:01:23 +03:00
maintainers = with maintainers; [ spacekookie ];
platforms = platforms.all;
};
}