From 5f5682819a9989d2d89fde310ced8203f5dd4e8e Mon Sep 17 00:00:00 2001 From: Pavel Sobolev Date: Sat, 10 Aug 2024 13:53:18 +0300 Subject: [PATCH] subtitleedit: reformat --- .../video/subtitleedit/default.nix | 35 ++++++++++--------- 1 file changed, 19 insertions(+), 16 deletions(-) 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 ]; }; }