nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, rustPlatform, fetchFromGitHub }:
2
3rustPlatform.buildRustPackage rec {
4 pname = "thokr";
5 version = "0.4.1";
6
7 src = fetchFromGitHub {
8 owner = "thatvegandev";
9 repo = pname;
10 rev = "v${version}";
11 sha256 = "0aryfx9qlnjdq3iq2d823c82fhkafvibmbz58g48b8ah5x5fv3ir";
12 };
13
14 cargoSha256 = "sha256-gEpmXyLmw6bX3enA3gNVtXNMlkQl6J/8AwJQSY0RtFw=";
15
16 meta = with lib; {
17 description = "A 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 };
22}