biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / typer / default.nix
blob8d41e2168783f3d753b8ec243edc26e155c52567
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule {
7   pname = "typer";
8   version = "unstable-2023-02-08";
10   src = fetchFromGitHub {
11     owner = "maaslalani";
12     repo = "typer";
13     rev = "02aa80b3be8a6c2c9d08d9a56b3fe784adf00933";
14     hash = "sha256-J3wTqWxHEQz1AAt7DfUmpgc7wmfILBtyHuDrmqN96fI=";
15   };
17   vendorHash = "sha256-t4zim6WhqGAf1zHmmbJbpVvQcE/aoNL7ZLdjU7f3rp8=";
19   ldflags = [ "-s" "-w" ];
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     mainProgram = "typer";
27   };