glow: add add meta.mainProgram

+5 -2
+5 -2
pkgs/applications/editors/glow/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 2 - 3 buildGoModule rec { 4 pname = "glow"; 5 version = "1.5.0"; ··· 23 changelog = "https://github.com/charmbracelet/glow/releases/tag/v${version}"; 24 license = licenses.mit; 25 maintainers = with maintainers; [ Br1ght0ne penguwin ]; 26 }; 27 }
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 buildGoModule rec { 6 pname = "glow"; 7 version = "1.5.0"; ··· 25 changelog = "https://github.com/charmbracelet/glow/releases/tag/v${version}"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ Br1ght0ne penguwin ]; 28 + mainProgram = "glow"; 29 }; 30 }