nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildGoModule, fetchFromGitHub }:
2
3buildGoModule rec {
4 pname = "gotypist";
5 version = "0.8.2";
6
7 src = fetchFromGitHub {
8 owner = "pb-";
9 repo = "gotypist";
10 rev = "${version}";
11 sha256 = "0khl2f6bl121slw9mlf4qzsdarpk1v3vry11f3dvz7pb1q6zjj11";
12 };
13
14 vendorSha256 = null;
15
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 };
26}