traefik: add djds as maintainer (#377217)
[NixPkgs.git] / pkgs / by-name / ty / typer / package.nix
blob9ff09b79688ab504fb8603090c8d96f73da4bb59
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule {
8   pname = "typer";
9   version = "unstable-2023-02-08";
11   src = fetchFromGitHub {
12     owner = "maaslalani";
13     repo = "typer";
14     rev = "02aa80b3be8a6c2c9d08d9a56b3fe784adf00933";
15     hash = "sha256-J3wTqWxHEQz1AAt7DfUmpgc7wmfILBtyHuDrmqN96fI=";
16   };
18   vendorHash = "sha256-t4zim6WhqGAf1zHmmbJbpVvQcE/aoNL7ZLdjU7f3rp8=";
20   ldflags = [
21     "-s"
22     "-w"
23   ];
25   meta = with lib; {
26     description = "Typing test in your terminal";
27     homepage = "https://github.com/maaslalani/typer";
28     license = licenses.mit;
29     maintainers = with maintainers; [ figsoda ];
30     mainProgram = "typer";
31   };