lib/licenses: mark watcom as non‐Free (#352608)

This commit is contained in:
Emily 2024-11-01 23:19:09 +00:00 committed by GitHub
commit 2d6cb731db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 2 deletions

View file

@ -1290,6 +1290,15 @@ lib.mapAttrs mkLicense ({
watcom = { watcom = {
spdxId = "Watcom-1.0"; spdxId = "Watcom-1.0";
fullName = "Sybase Open Watcom Public License 1.0"; fullName = "Sybase Open Watcom Public License 1.0";
# Despite being OSIapproved, this licence is not considered FOSS
# by Debian, Fedora, or the FSF, due to an onerous restriction that
# requires publication of even privatelydeployed modifications.
# This violates the FSFs freedom 3 and Debians “desert island
# test” and “dissident test”.
#
# See: <https://en.wikipedia.org/wiki/Sybase_Open_Watcom_Public_License>
free = false;
redistributable = true;
}; };
w3c = { w3c = {

View file

@ -2,9 +2,9 @@
, lib , lib
, fetchzip , fetchzip
# Only used for Linux's x86/x86_64 # Only useful on Linux x86/x86_64, and brings in nonfree Open Watcom
, uasm , uasm
, useUasm ? (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86) , useUasm ? false
# RAR code is under non-free unRAR license # RAR code is under non-free unRAR license
# see the meta.license section below for more details # see the meta.license section below for more details