typioca: init at 2.4.2

https://github.com/bloznelis/typioca
This commit is contained in:
figsoda 2023-07-23 14:48:11 -04:00
parent 0a5266e136
commit 66dbc84337
2 changed files with 42 additions and 0 deletions

@ -0,0 +1,40 @@
{ lib
, buildGoModule
, fetchFromGitHub
, testers
, typioca
}:
buildGoModule rec {
pname = "typioca";
version = "2.4.2";
src = fetchFromGitHub {
owner = "bloznelis";
repo = "typioca";
rev = version;
hash = "sha256-gSHJkMyRgJ58kccQAh1bJNveirDaqGjlhrzgvEX5c8o=";
};
vendorHash = "sha256-umtBvcfQoMQdWmQIAReeOkhRq+pelZzPvFsTq5ZwPXU=";
ldflags = [
"-s"
"-w"
"-X=github.com/bloznelis/typioca/cmd.Version=${version}"
];
passthru.tests = {
version = testers.testVersion {
package = typioca;
};
};
meta = with lib; {
description = "Cozy typing speed tester in terminal";
homepage = "https://github.com/bloznelis/typioca";
changelog = "https://github.com/bloznelis/typioca/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

@ -35518,6 +35518,8 @@ with pkgs;
typer = callPackage ../applications/misc/typer { };
typioca = callPackage ../applications/misc/typioca { };
ueberzug = with python3Packages; toPythonApplication ueberzug;
ueberzugpp = darwin.apple_sdk_11_0.callPackage ../tools/graphics/ueberzugpp {