subtitleedit: reformat

This commit is contained in:
Pavel Sobolev
2024-08-10 17:24:33 +03:00
parent 33c40979a7
commit 5f5682819a
@@ -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 ];
};
}