From e2e9dc92d86acf3a480202371d9ce0c77bc20c26 Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Fri, 13 Jan 2023 22:18:37 +0100 Subject: [PATCH] tvbrowser: update meta.license and add other meta attributes The file `txt/COPYRIGHT.txt` in the source archive states it as GPL3+-licensed. --- pkgs/applications/misc/tvbrowser/default.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/tvbrowser/default.nix b/pkgs/applications/misc/tvbrowser/default.nix index 18e06a42e573..f076a020e2ee 100644 --- a/pkgs/applications/misc/tvbrowser/default.nix +++ b/pkgs/applications/misc/tvbrowser/default.nix @@ -69,10 +69,19 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Electronic TV Program Guide"; + downloadPage = "https://www.tvbrowser.org/index.php?id=tv-browser"; homepage = "https://www.tvbrowser.org/"; + changelog = "https://www.tvbrowser.org/index.php?id=news"; sourceProvenance = with sourceTypes; [ binaryBytecode fromSource ]; - license = licenses.gpl3; + license = licenses.gpl3Plus; + mainProgram = pname; platforms = platforms.linux; maintainers = with maintainers; [ jfrankenau yarny ]; + longDescription = '' + TV-Browser shows TV program data arranged like in printed + TV programs after downloading it from the internet. + Plugins are used to download program data + and to provide additional functionality. + ''; }; }