gotypist: init at 0.8.2 (#147295)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
8ec82bb189
commit
315374ecc1
2 changed files with 28 additions and 0 deletions
26
pkgs/games/gotypist/default.nix
Normal file
26
pkgs/games/gotypist/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ 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 = [ "Paul Baecher" ];
|
||||
};
|
||||
}
|
|
@ -3140,6 +3140,8 @@ with pkgs;
|
|||
|
||||
gotify-desktop = callPackage ../tools/misc/gotify-desktop { };
|
||||
|
||||
gotypist = callPackage ../games/gotypist { };
|
||||
|
||||
gping = callPackage ../tools/networking/gping { };
|
||||
|
||||
gpu-burn = callPackage ../applications/misc/gpu-burn { };
|
||||
|
|
Loading…
Reference in a new issue