summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2018-08-17 20:48:40 -0400
committerBenjamin Hipple <bhipple@protonmail.com>2018-09-22 15:28:39 -0400
commitd7c1d04af4085e0ae6fecbffdb0a19299de598e8 (patch)
tree8e908a8bbd17d20cdb5df5c3b2a5ec82f32e0d70 /lib
parent13e738f1e89869f158035ac6c0b0c118ae5eaf04 (diff)
downloadnixlib-d7c1d04af4085e0ae6fecbffdb0a19299de598e8.tar
nixlib-d7c1d04af4085e0ae6fecbffdb0a19299de598e8.tar.gz
nixlib-d7c1d04af4085e0ae6fecbffdb0a19299de598e8.tar.bz2
nixlib-d7c1d04af4085e0ae6fecbffdb0a19299de598e8.tar.lz
nixlib-d7c1d04af4085e0ae6fecbffdb0a19299de598e8.tar.xz
nixlib-d7c1d04af4085e0ae6fecbffdb0a19299de598e8.tar.zst
nixlib-d7c1d04af4085e0ae6fecbffdb0a19299de598e8.zip
mkl: init at 2019.0.117
This packags the Intel Math Kernel library on x86-64 platforms, which is a
dependency for many data science and machine learning packages.

Upstream, Intel provides proprietary binary RPMs with a permissive
redistribution license. These have been repackaged in both Debian and Anaconda,
so we are not the first distribution to redistribute.
Diffstat (limited to 'lib')
-rw-r--r--lib/licenses.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/licenses.nix b/lib/licenses.nix
index c4db280645a4..64d538df3c90 100644
--- a/lib/licenses.nix
+++ b/lib/licenses.nix
@@ -387,6 +387,14 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
     fullName = "ISC License";
   };
 
+  # Proprietary binaries; free to redistribute without modification.
+  issl = {
+    fullName = "Intel Simplified Software License";
+    url = https://software.intel.com/en-us/license/intel-simplified-software-license;
+    free = false;
+  };
+
+
   lgpl2 = spdx {
     spdxId = "LGPL-2.0";
     fullName = "GNU Library General Public License v2 only";