xpra: add license

This commit is contained in:
Markus Kowalewski
2018-09-12 23:12:14 +02:00
parent 7d6c70bc74
commit 0052a756d2
2 changed files with 4 additions and 2 deletions
+1
View File
@@ -81,5 +81,6 @@ in buildPythonApplication rec {
description = "Persistent remote applications for X"; description = "Persistent remote applications for X";
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ tstrobel offline ]; maintainers = with maintainers; [ tstrobel offline ];
license = licenses.gpl2;
}; };
} }
+3 -2
View File
@@ -68,11 +68,12 @@ buildPythonApplication rec {
#''; #'';
meta = { meta = with stdenv.lib; {
homepage = http://xpra.org/; homepage = http://xpra.org/;
downloadPage = "https://xpra.org/src/"; downloadPage = "https://xpra.org/src/";
downloadURLRegexp = "xpra-.*[.]tar[.]xz$"; downloadURLRegexp = "xpra-.*[.]tar[.]xz$";
description = "Persistent remote applications for X"; description = "Persistent remote applications for X";
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
license = licenses.gpl2;
}; };
} }