Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / confetty / default.nix
blob77269ef8535413da9d8b29320e55d0f0cc77fd78
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   };