summary refs log tree commit diff
path: root/pkgs/applications/audio/bespokesynth
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2021-11-13 10:55:00 -0500
committerGitHub <noreply@github.com>2021-11-13 10:55:00 -0500
commit5419cf40465e8084860b5c66f80da5d06be1277a (patch)
treef4885639d5abd35e940949bdebf988179c5e2f03 /pkgs/applications/audio/bespokesynth
parente29d818477aa67a4def398e2b510437ecfbd4704 (diff)
downloadnixpkgs-5419cf40465e8084860b5c66f80da5d06be1277a.tar
nixpkgs-5419cf40465e8084860b5c66f80da5d06be1277a.tar.gz
nixpkgs-5419cf40465e8084860b5c66f80da5d06be1277a.tar.bz2
nixpkgs-5419cf40465e8084860b5c66f80da5d06be1277a.tar.lz
nixpkgs-5419cf40465e8084860b5c66f80da5d06be1277a.tar.xz
nixpkgs-5419cf40465e8084860b5c66f80da5d06be1277a.tar.zst
nixpkgs-5419cf40465e8084860b5c66f80da5d06be1277a.zip
bespokesynth: mark unfree
Binaries of VST2 cannot be distributed without upstream permission
which we don't have and cant get. Until VST2 support can be
teased out more carefully, let's mark the package us unfree.
Diffstat (limited to 'pkgs/applications/audio/bespokesynth')
-rw-r--r--pkgs/applications/audio/bespokesynth/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/applications/audio/bespokesynth/default.nix b/pkgs/applications/audio/bespokesynth/default.nix
index c3c33267f65..51d27224e31 100644
--- a/pkgs/applications/audio/bespokesynth/default.nix
+++ b/pkgs/applications/audio/bespokesynth/default.nix
@@ -106,7 +106,13 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Software modular synth with controllers support, scripting and VST";
     homepage = "https://github.com/awwbees/BespokeSynth";
-    license = licenses.gpl3Plus;
+    license = with licenses; [
+      gpl3Plus
+      
+      # This package is unfree and not distributable due to the license of VST2.
+      # see #145607
+      unfree
+    ];
     maintainers = with maintainers; [ astro ];
     platforms = platforms.all;
   };