summary refs log tree commit diff
path: root/pkgs/applications/audio/vcv-rack
diff options
context:
space:
mode:
authorAndré-Patrick Bubel <code@andre-bubel.de>2019-05-05 09:53:25 +0200
committerLassulus <github@lassul.us>2019-05-13 18:46:53 +0900
commit81b1136dc517e5a57d8ed4f6beb83d8bae3dd1b9 (patch)
tree12f7f3cfe8479c1e4e221ab604017dadc5fd30ee /pkgs/applications/audio/vcv-rack
parent0816c6917336f26ca39ad818df7325c2faca754f (diff)
downloadnixpkgs-81b1136dc517e5a57d8ed4f6beb83d8bae3dd1b9.tar
nixpkgs-81b1136dc517e5a57d8ed4f6beb83d8bae3dd1b9.tar.gz
nixpkgs-81b1136dc517e5a57d8ed4f6beb83d8bae3dd1b9.tar.bz2
nixpkgs-81b1136dc517e5a57d8ed4f6beb83d8bae3dd1b9.tar.lz
nixpkgs-81b1136dc517e5a57d8ed4f6beb83d8bae3dd1b9.tar.xz
nixpkgs-81b1136dc517e5a57d8ed4f6beb83d8bae3dd1b9.tar.zst
nixpkgs-81b1136dc517e5a57d8ed4f6beb83d8bae3dd1b9.zip
vcv-rack: correct license, redistribution is allowed
Diffstat (limited to 'pkgs/applications/audio/vcv-rack')
-rw-r--r--pkgs/applications/audio/vcv-rack/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/audio/vcv-rack/default.nix b/pkgs/applications/audio/vcv-rack/default.nix
index 27533084804..15935751c32 100644
--- a/pkgs/applications/audio/vcv-rack/default.nix
+++ b/pkgs/applications/audio/vcv-rack/default.nix
@@ -72,8 +72,9 @@ with stdenv.lib; stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Open-source virtual modular synthesizer";
     homepage = http://vcvrack.com/;
-    # The source is BSD-3 licensed, some of the art is CC-BY-NC 4.0 or unfree
-    license = [ licenses.bsd3 licenses.cc-by-nc-40 licenses.unfree ];
+    # The source is BSD-3 licensed, some of the art is CC-BY-NC 4.0 or under a
+    # no-derivatives clause
+    license = with licenses; [ bsd3 cc-by-nc-40 unfreeRedistributable ];
     maintainers = with maintainers; [ moredread ];
     platforms = platforms.linux;
   };