From 33fb33247e9f5ebe542d42bfe5452736557c1352 Mon Sep 17 00:00:00 2001 From: Colin Date: Fri, 14 Mar 2025 05:56:45 +0000 Subject: [PATCH] go2tv-lite: fix `meta.mainProgram` this expression is used for two toplevel packages: `go2tv` and `go2tv-lite`; the executable name varies appropriately. --- pkgs/applications/video/go2tv/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/video/go2tv/default.nix b/pkgs/applications/video/go2tv/default.nix index 31db3085cee8..77bf7cfb8517 100644 --- a/pkgs/applications/video/go2tv/default.nix +++ b/pkgs/applications/video/go2tv/default.nix @@ -63,6 +63,6 @@ buildGoModule rec { changelog = "https://github.com/alexballas/go2tv/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ gdamjan ]; - mainProgram = "go2tv"; + mainProgram = pname; }; }