2022-04-06 13:38:43 +00:00
|
|
|
{ lib, fetchCrate, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "toipe";
|
2022-04-11 11:03:05 +00:00
|
|
|
version = "0.4.0";
|
2022-04-06 13:38:43 +00:00
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2022-04-11 11:03:05 +00:00
|
|
|
sha256 = "sha256-lAvFCvNm55SjRmrhIkMBiM0nSlAG+jUEKLlLaGs1RkY=";
|
2022-04-06 13:38:43 +00:00
|
|
|
};
|
|
|
|
|
2022-04-11 11:03:05 +00:00
|
|
|
cargoSha256 = "sha256-WmWH/x69H17uHQEB0+GRUtApJnSEkoeFLLweP8NoBrk=";
|
2022-04-06 13:38:43 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Trusty terminal typing tester";
|
|
|
|
homepage = "https://github.com/Samyak2/toipe";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ loicreynier samyak ];
|
|
|
|
};
|
|
|
|
}
|