Skip to content

Commit

Permalink
cockroachdb-bin: Update licenses (NixOS#335770)
Browse files Browse the repository at this point in the history
  • Loading branch information
risicle authored Aug 26, 2024
2 parents b1606c4 + 855b8f7 commit 96948c3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions lib/licenses.nix
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,12 @@ lib.mapAttrs mkLicense ({
fullName = "CeCILL-C Free Software License Agreement";
};

cockroachdb-community-license = {
fullName = "CockroachDB Community License Agreement";
url = "https://www.cockroachlabs.com/cockroachdb-community-license/";
free = false;
};

cpal10 = {
spdxId = "CPAL-1.0";
fullName = "Common Public Attribution License 1.0";
Expand Down
6 changes: 5 additions & 1 deletion pkgs/servers/sql/cockroachdb/cockroachdb-bin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ buildFHSEnv {
meta = with lib; {
homepage = "https://www.cockroachlabs.com";
description = "Scalable, survivable, strongly-consistent SQL database";
license = licenses.bsl11;
license = with licenses; [
bsl11
mit
cockroachdb-community-license
];
platforms = [ "aarch64-linux" "x86_64-linux" ];
maintainers = with maintainers; [ rushmorem thoughtpolice ];
};
Expand Down

0 comments on commit 96948c3

Please sign in to comment.