My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/games/gotypist/default.nix

26 lines
645 B

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gotypist";
version = "0.8.2";
src = fetchFromGitHub {
owner = "pb-";
repo = "gotypist";
rev = "${version}";
sha256 = "0khl2f6bl121slw9mlf4qzsdarpk1v3vry11f3dvz7pb1q6zjj11";
};
vendorSha256 = null;
meta = with lib; {
description = "A touch-typing tutor";
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- ];
};
}