fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / to / toipe / package.nix
blobe90142608042ac632fab10c2c7ee6a062a4e8862
2   lib,
3   fetchCrate,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "toipe";
9   version = "0.5.0";
11   src = fetchCrate {
12     inherit pname version;
13     hash = "sha256-L4JemOxpynGYsA8FgHnMv/hrogLSRaaiIzDjxzZDqjM=";
14   };
16   cargoHash = "sha256-ShJ7dbd3oNo3qZJ5+ut+NfLF9j8kPPZy9yC2zl/s56k=";
18   meta = with lib; {
19     description = "Trusty terminal typing tester";
20     homepage = "https://github.com/Samyak2/toipe";
21     license = licenses.mit;
22     maintainers = with maintainers; [
23       loicreynier
24       samyak
25     ];
26   };