about summary refs log tree commit diff
path: root/pkgs/games/gotypist
diff options
context:
space:
mode:
authorPaul Baecher <paul@baecher.dev>2021-12-10 02:22:28 +0100
committerGitHub <noreply@github.com>2021-12-10 02:22:28 +0100
commit315374ecc111742f92c6039d74826bd4f5d85394 (patch)
tree72c254e8061967543f0d6c0b873a570a4aeb661e /pkgs/games/gotypist
parent8ec82bb189c3d47221b4d381dca4bbc6dfc74dc3 (diff)
gotypist: init at 0.8.2 (#147295)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/games/gotypist')
-rw-r--r--pkgs/games/gotypist/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/games/gotypist/default.nix b/pkgs/games/gotypist/default.nix
new file mode 100644
index 0000000000000..00fc30718182d
--- /dev/null
+++ b/pkgs/games/gotypist/default.nix
@@ -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" ];
+  };
+}