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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
640 B
Nix
Raw Normal View History

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