tvbrowser: update meta.license and add other meta attributes

The file `txt/COPYRIGHT.txt` in the source archive states it as
GPL3+-licensed.
This commit is contained in:
Yarny0
2023-02-04 18:00:14 +01:00
parent 62c02911b9
commit e2e9dc92d8
+10 -1
View File
@@ -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.
'';
};
}