Unverified Commit 5f568281 authored by Pavel Sobolev's avatar Pavel Sobolev
Browse files

subtitleedit: reformat

parent 33c40979
Loading
Loading
Loading
Loading
+19 −16
Original line number Diff line number Diff line
{ 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 ];
  };
}