Merge pull request #145766 from NixOS/bespokesynth-unfree
bespokesynth: mark unfree
This commit is contained in:
commit
cf6b299a38
1 changed files with 7 additions and 1 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue