lib.licenses: Add Unicode License Agreement for Data Files and Software

wip/yesman
Konrad Borowski 4 years ago committed by Alyssa Ross
parent 4528173318
commit e69e48a1e4
  1. 5
      lib/licenses.nix
  2. 2
      pkgs/data/misc/cldr-emoji-annotation/default.nix
  3. 2
      pkgs/data/misc/unicode-character-database/default.nix
  4. 2
      pkgs/data/misc/unicode-emoji/default.nix
  5. 2
      pkgs/data/misc/unihan-database/default.nix

@ -682,6 +682,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) {
# channel and NixOS images.
};
unicode-dfs-2016 = spdx {
spdxId = "Unicode-DFS-2016";
fullName = "Unicode License Agreement - Data Files and Software (2016)";
};
unlicense = spdx {
spdxId = "Unlicense";
fullName = "The Unlicense";

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Emoji annotation files in CLDR";
homepage = "https://www.unicode.org/";
license = licenses.free; # https://www.unicode.org/license.html
license = licenses.unicode-dfs-2016;
platforms = platforms.all;
};
}

@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Unicode Character Database";
homepage = "https://www.unicode.org/";
license = licenses.free; # https://www.unicode.org/license.html
license = licenses.unicode-dfs-2016;
platforms = platforms.all;
};
}

@ -53,7 +53,7 @@ symlinkJoin rec {
meta = with stdenv.lib; {
description = "Unicode Emoji Data Files";
homepage = "https://home.unicode.org/emoji/";
license = licenses.free; # https://www.unicode.org/license.html
license = licenses.unicode-dfs-2016;
platforms = platforms.all;
};
}

@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Unicode Han Database";
homepage = "https://www.unicode.org/";
license = licenses.free; # https://www.unicode.org/license.html
license = licenses.unicode-dfs-2016;
platforms = platforms.all;
};
}

Loading…
Cancel
Save