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
523 B
Nix
Raw Normal View History

2022-04-06 13:38:43 +00:00
{ lib, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "toipe";
2024-02-26 22:57:43 +00:00
version = "0.5.0";
2022-04-06 13:38:43 +00:00
src = fetchCrate {
inherit pname version;
2024-02-26 22:57:43 +00:00
sha256 = "sha256-L4JemOxpynGYsA8FgHnMv/hrogLSRaaiIzDjxzZDqjM=";
2022-04-06 13:38:43 +00:00
};
2024-02-26 22:57:43 +00:00
cargoHash = "sha256-ShJ7dbd3oNo3qZJ5+ut+NfLF9j8kPPZy9yC2zl/s56k=";
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 ];
};
}