diff --git a/pkgs/applications/video/subtitleedit/default.nix b/pkgs/applications/video/subtitleedit/default.nix index aa00f5e8dce0..17a22faab344 100644 --- a/pkgs/applications/video/subtitleedit/default.nix +++ b/pkgs/applications/video/subtitleedit/default.nix @@ -1,19 +1,20 @@ -{ lib -, stdenv -, fetchzip -, makeDesktopItem -, nix-update-script +{ + lib, + stdenv, + fetchzip, + makeDesktopItem, + nix-update-script, -, copyDesktopItems -, icoutils -, makeWrapper + copyDesktopItems, + icoutils, + makeWrapper, -, ffmpeg -, gtk2 -, hunspell -, mono -, mpv -, tesseract4 + ffmpeg, + gtk2, + hunspell, + mono, + mpv, + tesseract4, }: stdenv.mkDerivation rec { @@ -21,7 +22,9 @@ stdenv.mkDerivation rec { version = "4.0.6"; src = fetchzip { - url = "https://github.com/SubtitleEdit/subtitleedit/releases/download/${version}/SE${lib.replaceStrings [ "." ] [ "" ] version}.zip"; + url = "https://github.com/SubtitleEdit/subtitleedit/releases/download/${version}/SE${ + lib.replaceStrings [ "." ] [ "" ] version + }.zip"; hash = "sha256-ipAqnF7rpSXccWkyTysUBrD0/mnv5AEA5GuxMJjW9Dg="; stripRoot = false; }; @@ -92,6 +95,6 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; platforms = platforms.all; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = [ ]; + maintainers = with maintainers; [ paveloom ]; }; }