Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
673 B
Nix
32 lines
673 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gotypist";
|
|
version = "0.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pb-";
|
|
repo = "gotypist";
|
|
rev = version;
|
|
sha256 = "0khl2f6bl121slw9mlf4qzsdarpk1v3vry11f3dvz7pb1q6zjj11";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
meta = with lib; {
|
|
description = "Touch-typing tutor";
|
|
mainProgram = "gotypist";
|
|
longDescription = ''
|
|
A simple touch-typing tutor that follows Steve Yegge's methodology of
|
|
going in fast, slow, and medium cycles.
|
|
'';
|
|
homepage = "https://github.com/pb-/gotypist";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ pb- ];
|
|
};
|
|
}
|