biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / ttyper / default.nix
blob180b09771ce3e3a13cc09e2abaf49cc632b546e6
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "ttyper";
5   version = "1.5.0";
7   src = fetchFromGitHub {
8     owner = "max-niederman";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-L6xdJ659ZWKNg9CGQs+5TQIKoIAZ5KHdFSk7NCp9a2Q=";
12   };
14   cargoHash = "sha256-iOeyn4oXk6y/NqZeBwkStBjt3hVVw4s2L5Lm58tq1BY=";
16   meta = with lib; {
17     description = "Terminal-based typing test";
18     homepage = "https://github.com/max-niederman/ttyper";
19     changelog = "https://github.com/max-niederman/ttyper/releases/tag/${src.rev}";
20     license = licenses.mit;
21     maintainers = with maintainers; [ figsoda max-niederman ];
22     mainProgram = "ttyper";
23   };