biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / thokr / default.nix
bloba0045ffb51529a69af0809e140a3ab8dad363ca2
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "thokr";
5   version = "0.4.1";
7   src = fetchFromGitHub {
8     owner = "thatvegandev";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "0aryfx9qlnjdq3iq2d823c82fhkafvibmbz58g48b8ah5x5fv3ir";
12   };
14   cargoHash = "sha256-gEpmXyLmw6bX3enA3gNVtXNMlkQl6J/8AwJQSY0RtFw=";
16   meta = with lib; {
17     description = "Typing tui with visualized results and historical logging";
18     homepage = "https://github.com/thatvegandev/thokr";
19     license = licenses.mit;
20     maintainers = with maintainers; [ figsoda ];
21     mainProgram = "thokr";
22   };