update license: added the common clause license

This commit is contained in:
ByteSudoer 2024-03-21 02:41:29 +01:00
parent ebdf6a1d1e
commit eedaca8ef1
2 changed files with 2 additions and 1 deletions

View file

@ -394,6 +394,7 @@ lib.mapAttrs
}; };
commons-clause = { commons-clause = {
fullName = "Commons Clause License"; fullName = "Commons Clause License";
url = "https://commonsclause.com/";
free = false; free = false;
}; };
cpal10 = { cpal10 = {

View file

@ -33,7 +33,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; { meta = with lib; {
description = "Merge video & audio files via CLI "; description = "Merge video & audio files via CLI ";
homepage = "https://github.com/TGotwig/vidmerger"; homepage = "https://github.com/TGotwig/vidmerger";
license = licenses.mit; license = with licenses; [ mit commons-clause ];
maintainers = with maintainers; [ ByteSudoer ]; maintainers = with maintainers; [ ByteSudoer ];
mainProgram = "vidmerger"; mainProgram = "vidmerger";
}; };