nixpkgs/pkgs/applications/misc/toipe/default.nix
2022-06-09 11:41:25 +02:00

21 lines
525 B
Nix

{ lib, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "toipe";
version = "0.4.1";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-aunejitHVNIB/zIDgX3mlA1FzG7wIxlDCFdUvtuzQnc=";
};
cargoSha256 = "sha256-Nabc2lPpsUCcWEJzL6U84UoIJ5PCtYKVyLRhjhiqhpE=";
meta = with lib; {
description = "Trusty terminal typing tester";
homepage = "https://github.com/Samyak2/toipe";
license = licenses.mit;
maintainers = with maintainers; [ loicreynier samyak ];
};
}