1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00
nixpkgs/pkgs/games/gotypist/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

28 lines
666 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- ];
};
}