biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / void / default.nix
blob8ead979eed8040e0872e73babd878ba9045eee66
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "void";
5   version = "1.1.5";
7   src = fetchFromGitHub {
8     owner = "spacejam";
9     repo = "void";
10     rev = version;
11     sha256 = "08vazw4rszqscjz988k89z28skyj3grm81bm5iwknxxagmrb20fz";
12   };
14   # The tests are long-running and not that useful
15   doCheck = false;
17   cargoHash = "sha256-4LLm8EIGR9YJyVlSLRsQmBJc0QZaxBQafE4VLsDyAfI=";
19   meta = with lib; {
20     description = "Terminal-based personal organizer";
21     homepage = "https://github.com/spacejam/void";
22     license = licenses.gpl3;
23     maintainers = with maintainers; [ spacekookie ];
24     mainProgram = "void";
25   };