nixpkgs/pkgs/applications/misc/toipe/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
525 B
Nix
Raw Normal View History

2022-04-06 13:38:43 +00:00
{ lib, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "toipe";
2022-06-09 09:41:25 +00:00
version = "0.4.1";
2022-04-06 13:38:43 +00:00
src = fetchCrate {
inherit pname version;
2022-06-09 09:41:25 +00:00
sha256 = "sha256-aunejitHVNIB/zIDgX3mlA1FzG7wIxlDCFdUvtuzQnc=";
2022-04-06 13:38:43 +00:00
};
2022-06-09 09:41:25 +00:00
cargoSha256 = "sha256-Nabc2lPpsUCcWEJzL6U84UoIJ5PCtYKVyLRhjhiqhpE=";
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 ];
};
}