python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / gotypist / default.nix
blobd7c9c33d7574af8893fdedbb689e0e54d3ba12ce
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   vendorSha256 = null;
16   meta = with lib; {
17     description = "A touch-typing tutor";
18     longDescription = ''
19       A simple touch-typing tutor that follows Steve Yegge's methodology of
20       going in fast, slow, and medium cycles.
21     '';
22     homepage = "https://github.com/pb-/gotypist";
23     license = licenses.mit;
24     maintainers = with maintainers; [ pb- ];
25   };