xpra: add license

This commit is contained in:
Markus Kowalewski 2018-09-12 21:42:39 +02:00
parent 7d6c70bc74
commit 0052a756d2
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB
2 changed files with 4 additions and 2 deletions

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;
}; };
} }

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;
}; };
} }