evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / to / toipe / package.nix
blob32e8825239f2aeeb375b0f37788f80e5bc15accd
1 { lib, fetchCrate, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "toipe";
5   version = "0.5.0";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-L4JemOxpynGYsA8FgHnMv/hrogLSRaaiIzDjxzZDqjM=";
10   };
12   cargoHash = "sha256-ShJ7dbd3oNo3qZJ5+ut+NfLF9j8kPPZy9yC2zl/s56k=";
14   meta = with lib; {
15     description = "Trusty terminal typing tester";
16     homepage = "https://github.com/Samyak2/toipe";
17     license = licenses.mit;
18     maintainers = with maintainers; [ loicreynier samyak ];
19   };