depot/third_party/nixpkgs/pkgs/applications/misc/toipe/default.nix
Default email 3a4df29a92 Project import generated by Copybara.
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
2022-06-16 19:23:12 +02:00

20 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 ];
};
}