biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / terminal-parrot / default.nix
blob3d114302031ab95e5230ca7e8937e140829777a1
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "terminal-parrot";
5   version = "1.2.0";
7   src = fetchFromGitHub {
8     owner = "jmhobbs";
9     repo = "terminal-parrot";
10     rev = version;
11     hash = "sha256-LI67DDcK3M084r9JPx8NcBWthaiBOCEL4lQJhuUJSok=";
12   };
14   vendorHash = "sha256-EhnmOpT+rx4RVpmqgEQ4qO+Uca1W9uhx4fcExXG9LOI=";
16   doCheck = false;
18   meta = with lib; {
19     description = "Shows colorful, animated party parrot in your terminial";
20     homepage = "https://github.com/jmhobbs/terminal-parrot";
21     license = licenses.mit;
22     maintainers = [ maintainers.heel ];
23     mainProgram = "terminal-parrot";
24   };