about summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-02-23 16:14:09 +0000
committerAlyssa Ross <hi@alyssa.is>2023-02-23 17:42:15 +0000
commit7ce8e7c4cf90492a631e96bcfe70724104914381 (patch)
treefc483fddb11395695e6b6604949368eb56ab478a /pkgs/development/compilers/llvm
parent9f07aa4babfaff739ecf95855a8203323b09d473 (diff)
downloadnixlib-7ce8e7c4cf90492a631e96bcfe70724104914381.tar
nixlib-7ce8e7c4cf90492a631e96bcfe70724104914381.tar.gz
nixlib-7ce8e7c4cf90492a631e96bcfe70724104914381.tar.bz2
nixlib-7ce8e7c4cf90492a631e96bcfe70724104914381.tar.lz
nixlib-7ce8e7c4cf90492a631e96bcfe70724104914381.tar.xz
nixlib-7ce8e7c4cf90492a631e96bcfe70724104914381.tar.zst
nixlib-7ce8e7c4cf90492a631e96bcfe70724104914381.zip
lib.licenses.asl20-llvm: replace llvm-exception
LLVM-exception only makes sense when used with the Apache 2.0 license,
so let's combine them, so it's not possible to forget one of them like
happened with llvm_15.
Diffstat (limited to 'pkgs/development/compilers/llvm')
-rw-r--r--pkgs/development/compilers/llvm/15/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/llvm/15/default.nix b/pkgs/development/compilers/llvm/15/default.nix
index db98f2854a09..526e79992b88 100644
--- a/pkgs/development/compilers/llvm/15/default.nix
+++ b/pkgs/development/compilers/llvm/15/default.nix
@@ -84,7 +84,7 @@ in let
   inherit (releaseInfo) release_version version;
 
   llvm_meta = {
-    license     = with lib.licenses; [ ncsa llvm-exception ];
+    license     = with lib.licenses; [ ncsa asl20-llvm ];
     maintainers = lib.teams.llvm.members;
     platforms   = lib.platforms.all;
   };