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

26 lines
640 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform }:
2019-01-07 21:01:23 +03:00
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 = "1wh1yb02w5afghd19i2s0v8mq4lq20djsljrr44xciq68bqfdcp0";
2019-01-07 21:01:23 +03:00
meta = with lib; {
2019-01-07 21:01:23 +03:00
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 ];
};
}