Unverified Commit 851e8a2f authored by jopejoe1's avatar jopejoe1 Committed by GitHub
Browse files

treewide: remove stringy licenses (#439982)

parents d13457b0 851d9a47
Loading
Loading
Loading
Loading
+50 −0
Original line number Diff line number Diff line
@@ -167,6 +167,11 @@ lib.mapAttrs mkLicense (
      fullName = "Apache License 2.0";
    };

    baekmuk = {
      spdxId = "Baekmuk";
      fullName = "Baekmuk License";
    };

    bitstreamVera = {
      spdxId = "Bitstream-Vera";
      fullName = "Bitstream Vera Font License";
@@ -182,6 +187,11 @@ lib.mapAttrs mkLicense (
      fullName = " BitTorrent Open Source License v1.1";
    };

    boehmGC = {
      spdxId = "Boehm-GC";
      fullName = "Boehm-Demers-Weiser GC License";
    };

    bola11 = {
      url = "https://blitiri.com.ar/p/bola/";
      fullName = "Buena Onda License Agreement 1.1";
@@ -586,6 +596,11 @@ lib.mapAttrs mkLicense (
      free = false;
    };

    fontException = {
      spdxId = "Font-exception-2.0";
      fullName = "Font exception 2.0";
    };

    fraunhofer-fdk = {
      fullName = "Fraunhofer FDK AAC Codec Library";
      spdxId = "FDK-AAC";
@@ -595,6 +610,11 @@ lib.mapAttrs mkLicense (
      fullName = "Unspecified free software license";
    };

    freeimage = {
      spdxId = "FreeImage";
      fullName = "FreeImage Public License v1.0";
    };

    fsl11Mit = {
      fullName = "Functional Source License, Version 1.1, MIT Future License";
      spdxId = "FSL-1.1-MIT";
@@ -766,6 +786,11 @@ lib.mapAttrs mkLicense (
      free = false;
    };

    interbase = {
      spdxId = "Interbase-1.0";
      fullName = "Interbase Public License v1.0";
    };

    ipa = {
      spdxId = "IPA";
      fullName = "IPA Font License";
@@ -1042,6 +1067,11 @@ lib.mapAttrs mkLicense (
      redistributable = true; # Only if used in Netdata products.
    };

    ngpl = {
      spdxId = "NGPL";
      fullName = "Nethack General Public License";
    };

    nistSoftware = {
      spdxId = "NIST-Software";
      fullName = "NIST Software License";
@@ -1134,6 +1164,11 @@ lib.mapAttrs mkLicense (
      fullName = "Open Software License 3.0";
    };

    paratype = {
      fullName = "ParaType Free Font Licensing Agreement";
      url = "https://web.archive.org/web/20161209023955/http://www.paratype.ru/public/pt_openlicense_eng.asp";
    };

    parity70 = {
      spdxId = "Parity-7.0.0";
      fullName = "Parity Public License 7.0.0";
@@ -1262,6 +1297,11 @@ lib.mapAttrs mkLicense (
      redistributable = false; # only free to redistribute "for non-commercial purposes"
    };

    tcpWrappers = {
      spdxId = "TCP-wrappers";
      fullName = "TCP Wrappers License";
    };

    teamspeak = {
      fullName = "Teamspeak client license";
      url = "https://www.teamspeak.com/en/privacy-and-terms/";
@@ -1309,6 +1349,11 @@ lib.mapAttrs mkLicense (
      # https://github.com/spdx/license-list-XML/issues/2757
    };

    torque11 = {
      spdxId = "TORQUE-1.1";
      fullName = "TORQUE v2.5+ Software License v1.1";
    };

    tsl = {
      shortName = "TSL";
      fullName = "Timescale License Agreegment";
@@ -1449,6 +1494,11 @@ lib.mapAttrs mkLicense (
      fullName = "X11 License";
    };

    xerox = {
      spdxId = "Xerox";
      fullName = "Xerox License";
    };

    xfig = {
      spdxId = "Xfig";
      fullName = "xfig";
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ stdenv.mkDerivation {
      almost every other maxent package out there.
    '';
    homepage = "http://www.umiacs.umd.edu/~hal/megam";
    license = "non-commercial";
    license = lib.licenses.unfree;
    maintainers = with maintainers; [ leixb ];
    platforms = platforms.unix;
  };
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ stdenv.mkDerivation {
  meta = with lib; {
    description = "urxvt plugin that allows to switch color themes during runtime";
    homepage = "https://github.com/felixr/urxvt-theme-switch";
    license = "CCBYNC";
    license = lib.licenses.cc-by-nc-30;
    maintainers = [ ];
    platforms = platforms.unix;
  };
+6 −2
Original line number Diff line number Diff line
{ stdenvNoCC, fetchurl }:
{
  lib,
  stdenvNoCC,
  fetchurl,
}:

stdenvNoCC.mkDerivation rec {
  pname = "baekmuk-ttf";
@@ -21,6 +25,6 @@ stdenvNoCC.mkDerivation rec {
  meta = {
    description = "Korean font";
    homepage = "http://kldp.net/projects/baekmuk/";
    license = "BSD-like";
    license = lib.licenses.baekmuk;
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -115,7 +115,7 @@ stdenv.mkDerivation (finalAttrs: {
      C or C++ programs, though that is not its primary goal.
    '';
    changelog = "https://github.com/bdwgc/bdwgc/blob/v${finalAttrs.version}/ChangeLog";
    license = "https://hboehm.info/gc/license.txt"; # non-copyleft, X11-style license
    license = lib.licenses.boehmGC;
    maintainers = with lib.maintainers; [ ];
    platforms = lib.platforms.all;
  };
Loading