From c6c31833286232b712756da7cae639899e1e34ae Mon Sep 17 00:00:00 2001 From: Max Niederman Date: Sat, 18 Dec 2021 21:09:47 -0800 Subject: [PATCH 1/2] ttyper: 0.3.0 -> 0.4.0 --- pkgs/applications/misc/ttyper/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/ttyper/default.nix b/pkgs/applications/misc/ttyper/default.nix index 442c2a91682f..4e927fa0698a 100644 --- a/pkgs/applications/misc/ttyper/default.nix +++ b/pkgs/applications/misc/ttyper/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "ttyper"; - version = "0.3.1"; + version = "0.4.0"; src = fetchFromGitHub { owner = "max-niederman"; repo = pname; rev = "v${version}"; - sha256 = "sha256-lluBxYZQWygX9aujNK251bDilNNErVNr4WDoyqSPTiQ="; + sha256 = "sha256-UptjgFGp4QNG8eLuqBzg/Kd5p5Rms3yT172hbf/2hi4="; }; - cargoSha256 = "sha256-GQNNl8/Y/jHDBGJQ7LWNpgbOgWaV/3UAMgYLJFJmQ3Y="; + cargoSha256 = "sha256-N10X5eJlpDKmCEffEXpkAejS32Lz183Lup0mmLMwOSU="; meta = with lib; { description = "Terminal-based typing test"; From f9c6fd3779468cd31ad1a696d4f9dda2630e5ee9 Mon Sep 17 00:00:00 2001 From: Max Niederman Date: Sat, 18 Dec 2021 21:10:49 -0800 Subject: [PATCH 2/2] ttyper: add maintainer max-niederman max-niederman is the owner of the ttyper project and has updated the package in the past. --- pkgs/applications/misc/ttyper/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/ttyper/default.nix b/pkgs/applications/misc/ttyper/default.nix index 4e927fa0698a..d2bed3dce0a2 100644 --- a/pkgs/applications/misc/ttyper/default.nix +++ b/pkgs/applications/misc/ttyper/default.nix @@ -17,6 +17,6 @@ rustPlatform.buildRustPackage rec { description = "Terminal-based typing test"; homepage = "https://github.com/max-niederman/ttyper"; license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda max-niederman ]; }; }