summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNomisIV <simon@nomisiv.com>2020-12-15 19:25:32 +0100
committerNomisIV <simon@nomisiv.com>2020-12-15 19:25:32 +0100
commit7eff6be40c09f173c547ab4088ccf78b3cb78817 (patch)
tree72b9ad2a807f63a6cd93cb9c6137fb21da20c959
parent49ce410158710117591d50e8f05dfaa75a45ad25 (diff)
blender: updated license, because of OptiX
-rw-r--r--pkgs/applications/misc/blender/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix
index f001e20a380e..001c730ba6c2 100644
--- a/pkgs/applications/misc/blender/default.nix
+++ b/pkgs/applications/misc/blender/default.nix
@@ -152,7 +152,8 @@ in stdenv.mkDerivation rec {
homepage = "https://www.blender.org";
# They comment two licenses: GPLv2 and Blender License, but they
# say: "We've decided to cancel the BL offering for an indefinite period."
- license = licenses.gpl2Plus;
+ # OptiX, enabled with cudaSupport, is non-free.
+ license = with licenses; [ gpl2Plus ] ++ optional cudaSupport unfree;
platforms = [ "x86_64-linux" "x86_64-darwin" ];
maintainers = with maintainers; [ goibhniu veprbl ];
};