typer: init at unstable-2023-02-08

https://github.com/maaslalani/typer

figsoda 0b1845d4 e16572ae

+29
+27
pkgs/applications/misc/typer/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule { 7 + pname = "typer"; 8 + version = "unstable-2023-02-08"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "maaslalani"; 12 + repo = "typer"; 13 + rev = "02aa80b3be8a6c2c9d08d9a56b3fe784adf00933"; 14 + hash = "sha256-J3wTqWxHEQz1AAt7DfUmpgc7wmfILBtyHuDrmqN96fI="; 15 + }; 16 + 17 + vendorHash = "sha256-t4zim6WhqGAf1zHmmbJbpVvQcE/aoNL7ZLdjU7f3rp8="; 18 + 19 + ldflags = [ "-s" "-w" ]; 20 + 21 + meta = with lib; { 22 + description = "Typing test in your terminal"; 23 + homepage = "https://github.com/maaslalani/typer"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ figsoda ]; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 35415 35415 inherit (darwin.apple_sdk.frameworks) Security; 35416 35416 }; 35417 35417 35418 + typer = callPackage ../applications/misc/typer { }; 35419 + 35418 35420 ueberzug = with python3Packages; toPythonApplication ueberzug; 35419 35421 35420 35422 ueberzugpp = darwin.apple_sdk_11_0.callPackage ../tools/graphics/ueberzugpp { };