k3s: format with nixfmt-rfc-style
[NixPkgs.git] / pkgs / games / gotypist / default.nix
blob12489a27e6a6a1e315248ad34268ce2ecf9543dc
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gotypist";
5   version = "0.8.2";
7   src = fetchFromGitHub {
8     owner = "pb-";
9     repo = "gotypist";
10     rev = version;
11     sha256 = "0khl2f6bl121slw9mlf4qzsdarpk1v3vry11f3dvz7pb1q6zjj11";
12   };
14   vendorHash = null;
16   meta = with lib; {
17     description = "A touch-typing tutor";
18     mainProgram = "gotypist";
19     longDescription = ''
20       A simple touch-typing tutor that follows Steve Yegge's methodology of
21       going in fast, slow, and medium cycles.
22     '';
23     homepage = "https://github.com/pb-/gotypist";
24     license = licenses.mit;
25     maintainers = with maintainers; [ pb- ];
26   };