biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / confetty / default.nix
bloba9e838c84b014f88d558c7059365e1bb8d6b9eda
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule {
7   pname = "confetty";
8   version = "unstable-2022-11-05";
10   src = fetchFromGitHub {
11     owner = "maaslalani";
12     repo = "confetty";
13     rev = "6c6f1b5b605f78c3ed3bab2d2a1357c0dd794221";
14     hash = "sha256-1BAszv9I2JDflWyHuAlbJo7+oI7BI/TL10uFIYa8mLk=";
15   };
17   vendorHash = "sha256-RymdnueY674Zd231O8CIw/TEIDaWDzc+AaI6yk9hFgc=";
19   ldflags = [ "-s" "-w" ];
21   meta = with lib; {
22     description = "Confetti in your TTY";
23     homepage = "https://github.com/maaslalani/confetty";
24     license = licenses.mit;
25     maintainers = with maintainers; [ figsoda ];
26     mainProgram = "confetty";
27   };