summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm/3.9/llvm.nix
diff options
context:
space:
mode:
authorWill Dietz <github@wdtz.org>2017-02-11 16:13:29 -0600
committerVladimír Čunát <vcunat@gmail.com>2017-02-11 23:13:29 +0100
commit947c26972b8451e0f00839c9b0e9cfd321e152d4 (patch)
tree4eb62497674a18032f0c90abe01db6593503cf49 /pkgs/development/compilers/llvm/3.9/llvm.nix
parent5b2a71fa250926010e6da0a6c6325dc1270770c1 (diff)
downloadnixpkgs-947c26972b8451e0f00839c9b0e9cfd321e152d4.tar
nixpkgs-947c26972b8451e0f00839c9b0e9cfd321e152d4.tar.gz
nixpkgs-947c26972b8451e0f00839c9b0e9cfd321e152d4.tar.bz2
nixpkgs-947c26972b8451e0f00839c9b0e9cfd321e152d4.tar.lz
nixpkgs-947c26972b8451e0f00839c9b0e9cfd321e152d4.tar.xz
nixpkgs-947c26972b8451e0f00839c9b0e9cfd321e152d4.tar.zst
nixpkgs-947c26972b8451e0f00839c9b0e9cfd321e152d4.zip
LLVM: Fix licensing metadata, closes #22679. (#22681)
* All projects are available under NCSA license,
  other than dragonegg.
* "Runtime" projects are dual-licensed under
  both NCSA and MIT:
  libc++, libc++abi, compiler-rt
* I don't mention MIT for compiler-rt as
  we only build it as part of LLVM.
Diffstat (limited to 'pkgs/development/compilers/llvm/3.9/llvm.nix')
-rw-r--r--pkgs/development/compilers/llvm/3.9/llvm.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/llvm/3.9/llvm.nix b/pkgs/development/compilers/llvm/3.9/llvm.nix
index b64cf4fed5b..e1edbf5d0e7 100644
--- a/pkgs/development/compilers/llvm/3.9/llvm.nix
+++ b/pkgs/development/compilers/llvm/3.9/llvm.nix
@@ -109,7 +109,7 @@ in stdenv.mkDerivation rec {
   meta = {
     description = "Collection of modular and reusable compiler and toolchain technologies";
     homepage    = http://llvm.org/;
-    license     = stdenv.lib.licenses.bsd3;
+    license     = stdenv.lib.licenses.ncsa;
     maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric ];
     platforms   = stdenv.lib.platforms.all;
   };