Merge pull request #135715 from figsoda/ttyper

ttyper: init at 0.2.5

authored by

Fabian Affolter and committed by
GitHub
30ba8729 94ff85a0

+24
+22
pkgs/applications/misc/ttyper/default.nix
··· 1 + { fetchFromGitHub, lib, rustPlatform }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "ttyper"; 5 + version = "0.2.5"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "max-niederman"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1fsb77ky92fyv3ll6zrbxbd69gm85xnc6bivj7sc3sv5cxhgr7a5"; 12 + }; 13 + 14 + cargoSha256 = "1sqdql0kfr1vsww6hkrp7yjlzx0mnhfma51z699hkx9c492sf1wk"; 15 + 16 + meta = with lib; { 17 + description = "Terminal-based typing test"; 18 + homepage = "https://github.com/max-niederman/ttyper"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ figsoda ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 27884 27884 27885 27885 trojita = libsForQt5.callPackage ../applications/networking/mailreaders/trojita { }; 27886 27886 27887 + ttyper = callPackage ../applications/misc/ttyper { }; 27888 + 27887 27889 tudu = callPackage ../applications/office/tudu { }; 27888 27890 27889 27891 tuna = python3Packages.callPackage ../os-specific/linux/tuna { };