about summary refs log tree commit diff
path: root/pkgs/applications/video/mpv
diff options
context:
space:
mode:
authorlunik1 <ch.gpg@themaw.xyz>2021-04-20 18:58:09 +0100
committerlunik1 <ch.gpg@themaw.xyz>2021-04-20 18:58:09 +0100
commiteee5a743812fb824c517a3ec0efd62dc9ccfb288 (patch)
treefff887589a2b6d87b7bcee49a6d3ec92b5a44ddb /pkgs/applications/video/mpv
parent9485531db962409f5053cc53c8c6731f2dc0d93a (diff)
mpvScripts.convert: set license to unfree
The upstream gist has no license, to the license should be unfree
as per CONTRIBUTING.md
Diffstat (limited to 'pkgs/applications/video/mpv')
-rw-r--r--pkgs/applications/video/mpv/scripts/convert.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/video/mpv/scripts/convert.nix b/pkgs/applications/video/mpv/scripts/convert.nix
index 935740db27645..b7d6ea88fe164 100644
--- a/pkgs/applications/video/mpv/scripts/convert.nix
+++ b/pkgs/applications/video/mpv/scripts/convert.nix
@@ -30,14 +30,15 @@ stdenvNoCC.mkDerivation {
   '';
   passthru.scriptName = "convert_script.lua";
 
-  meta = {
+  meta = with lib; {
     description = "Convert parts of a video while you are watching it in mpv";
     homepage = "https://gist.github.com/Zehkul/25ea7ae77b30af959be0";
-    maintainers = [ lib.maintainers.Profpatsch ];
+    maintainers = [ maintainers.Profpatsch ];
     longDescription = ''
       When this script is loaded into mpv, you can hit Alt+W to mark the beginning
       and Alt+W again to mark the end of the clip. Then a settings window opens.
     '';
+    license = licenses.unfree;
   };
 }