Merge pull request #76152 from markuskowa/lic-gnunet

gnunet: fix license
This commit is contained in:
markuskowa 2019-12-22 00:53:41 +01:00 committed by GitHub
commit 8317f22265
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
'';
homepage = https://gnunet.org/;
license = licenses.gpl2Plus;
license = licenses.agpl3Plus;
maintainers = with maintainers; [ vrthra ];
platforms = platforms.gnu ++ platforms.linux;
};

View file

@ -64,7 +64,7 @@ stdenv.mkDerivation {
'';
*/
meta = {
meta = with stdenv.lib; {
description = "GNUnet, GNU's decentralized anonymous and censorship-resistant P2P framework";
longDescription = ''
@ -84,9 +84,9 @@ stdenv.mkDerivation {
homepage = https://gnunet.org/;
license = stdenv.lib.licenses.gpl2Plus;
license = licenses.agpl3Plus;
maintainers = with stdenv.lib.maintainers; [ ];
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux;
platforms = platforms.gnu ++ platforms.linux;
};
}