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

26 lines
640 B
Nix
Raw Normal View History

{ 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
doCheck = false;
2019-01-07 18:01:23 +00:00
cargoSha256 = "1wh1yb02w5afghd19i2s0v8mq4lq20djsljrr44xciq68bqfdcp0";
2019-01-07 18:01:23 +00:00
meta = with lib; {
2019-01-07 18:01:23 +00:00
description = "Terminal-based personal organizer";
homepage = "https://github.com/spacejam/void";
license = licenses.gpl3;
2019-01-07 18:01:23 +00:00
maintainers = with maintainers; [ spacekookie ];
};
}