lib.licenses: Add Unicode License Agreement for Data Files and Software
This commit is contained in:
parent
4528173318
commit
e69e48a1e4
|
@ -682,6 +682,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) {
|
||||||
# channel and NixOS images.
|
# channel and NixOS images.
|
||||||
};
|
};
|
||||||
|
|
||||||
|
unicode-dfs-2016 = spdx {
|
||||||
|
spdxId = "Unicode-DFS-2016";
|
||||||
|
fullName = "Unicode License Agreement - Data Files and Software (2016)";
|
||||||
|
};
|
||||||
|
|
||||||
unlicense = spdx {
|
unlicense = spdx {
|
||||||
spdxId = "Unlicense";
|
spdxId = "Unlicense";
|
||||||
fullName = "The Unlicense";
|
fullName = "The Unlicense";
|
||||||
|
|
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Emoji annotation files in CLDR";
|
description = "Emoji annotation files in CLDR";
|
||||||
homepage = "https://www.unicode.org/";
|
homepage = "https://www.unicode.org/";
|
||||||
license = licenses.free; # https://www.unicode.org/license.html
|
license = licenses.unicode-dfs-2016;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Unicode Character Database";
|
description = "Unicode Character Database";
|
||||||
homepage = "https://www.unicode.org/";
|
homepage = "https://www.unicode.org/";
|
||||||
license = licenses.free; # https://www.unicode.org/license.html
|
license = licenses.unicode-dfs-2016;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,7 +53,7 @@ symlinkJoin rec {
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Unicode Emoji Data Files";
|
description = "Unicode Emoji Data Files";
|
||||||
homepage = "https://home.unicode.org/emoji/";
|
homepage = "https://home.unicode.org/emoji/";
|
||||||
license = licenses.free; # https://www.unicode.org/license.html
|
license = licenses.unicode-dfs-2016;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Unicode Han Database";
|
description = "Unicode Han Database";
|
||||||
homepage = "https://www.unicode.org/";
|
homepage = "https://www.unicode.org/";
|
||||||
license = licenses.free; # https://www.unicode.org/license.html
|
license = licenses.unicode-dfs-2016;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue