Sfondo
Ho creato un mod per minecraft usando Minecraft Forge che usa "altro" mod. Ho il permesso dell'autore della "altra" mod di usare e distribuire il suo codice con il mio codice.
In questo momento, il mio file LICENSE.md
ha qualcosa del genere:
# License
This project uses portion of code from ["other" mod](https://github.com/author/mod)
[licensed](https://github.com/author/mod/blob/master/licence.md) under GPL.
The MIT License (MIT)
Copyright (c) 2016 Me
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
La domanda non riguarda "come concedo in licenza il codice con licenza MIT con codice GPLv3?", piuttosto "come posso applicare la limitazione a questo tipo di combinazione di licenze?"
La domanda
Uso la licenza MIT per ora, ma per le versioni future voglio cambiare la licenza che applicherà alcune limitazioni sul codice sorgente, per quanto riguarda distribuzione del mio mod.
Voglio limitare i seguenti:
- Compreso il mio mod nei mod pack senza la mia autorizzazione o link al sito web (dove distribuisco il mio mod)
- Distribuire il mio mod sui siti web del catalogo mod senza la mia autorizzazione
Devo passare ad un'altra licenza (quale poi?), o aggiungere linee aggiuntive alla licenza MIT originale (e come posso farlo)?
Fammi sapere se non capisco qualcosa sulle licenze e, grazie per la tua attenzione! :)