about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-06-07 12:07:37 -0400
committerfigsoda <figsoda@pm.me>2023-06-07 12:07:37 -0400
commit92d7b781be54fbc88ba9245ffd39f413d0958f74 (patch)
treee626ee250966be339d80bbbb5fea3535a147b68d /pkgs/applications/misc
parent99b72f5211a3b5ebb3d5599b6de944320787aa19 (diff)
ttyper: 1.2.1 -> 1.2.2
Diff: https://github.com/max-niederman/ttyper/compare/v1.2.1...v1.2.2

Changelog: https://github.com/max-niederman/ttyper/releases/tag/v1.2.2
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/ttyper/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/misc/ttyper/default.nix b/pkgs/applications/misc/ttyper/default.nix
index b9a5b8b4fa05b..7ccc562bb0f29 100644
--- a/pkgs/applications/misc/ttyper/default.nix
+++ b/pkgs/applications/misc/ttyper/default.nix
@@ -1,21 +1,22 @@
-{ fetchFromGitHub, lib, rustPlatform }:
+{ lib, rustPlatform, fetchFromGitHub }:
 
 rustPlatform.buildRustPackage rec {
   pname = "ttyper";
-  version = "1.2.1";
+  version = "1.2.2";
 
   src = fetchFromGitHub {
     owner = "max-niederman";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-1frm41Vbo4t1BELq0rNGb1hY7RQLt8IJaEhtyNfNNdU=";
+    hash = "sha256-5U6+16gy5s+1zDSxy6rMheZFAbpiya3uxvr21VaHDZQ=";
   };
 
-  cargoSha256 = "sha256-UyO8oX54qVQA7nFx6Y/cSgb33Cz3M0kFeiYqUrSbCe0=";
+  cargoHash = "sha256-O5fPV20OSEMv7Yw982ZorhN7y3NTzrprS79n2ID0LwU=";
 
   meta = with lib; {
     description = "Terminal-based typing test";
     homepage = "https://github.com/max-niederman/ttyper";
+    changelog = "https://github.com/max-niederman/ttyper/releases/tag/${src.rev}";
     license = licenses.mit;
     maintainers = with maintainers; [ figsoda max-niederman ];
   };