Merge pull request #243992 from figsoda/typer

typer: init at unstable-2023-02-08
This commit is contained in:
Nick Cao 2023-07-17 19:35:06 -06:00 committed by GitHub
commit c1d5687421
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule {
pname = "typer";
version = "unstable-2023-02-08";
src = fetchFromGitHub {
owner = "maaslalani";
repo = "typer";
rev = "02aa80b3be8a6c2c9d08d9a56b3fe784adf00933";
hash = "sha256-J3wTqWxHEQz1AAt7DfUmpgc7wmfILBtyHuDrmqN96fI=";
};
vendorHash = "sha256-t4zim6WhqGAf1zHmmbJbpVvQcE/aoNL7ZLdjU7f3rp8=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Typing test in your terminal";
homepage = "https://github.com/maaslalani/typer";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

View File

@ -35418,6 +35418,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
typer = callPackage ../applications/misc/typer { };
ueberzug = with python3Packages; toPythonApplication ueberzug;
ueberzugpp = darwin.apple_sdk_11_0.callPackage ../tools/graphics/ueberzugpp { };