···1{ lib
2, stdenv
00003, copyDesktopItems
4-, makeDesktopItem
5, makeWrapper
6-, fetchzip
7, ffmpeg
8, gtk2
9, hunspell
10-, icoutils
11, mono
12, mpv
13, tesseract4
14-, nix-update-script
15}:
1617stdenv.mkDerivation rec {
18 pname = "subtitleedit";
19- version = "4.0.1";
2021 src = fetchzip {
22 url = "https://github.com/SubtitleEdit/subtitleedit/releases/download/${version}/SE${lib.replaceStrings [ "." ] [ "" ] version}.zip";
23- hash = "sha256-Z7NVn4F19Hx55YWPNmbpWZ8yQulXd50bcy2A/8pCqJ4=";
24 stripRoot = false;
25 };
26···8081 meta = with lib; {
82 description = "A subtitle editor";
83- homepage = "https://nikse.dk/subtitleedit";
84- license = licenses.gpl3Plus;
85 longDescription = ''
86 With Subtitle Edit you can easily adjust a subtitle if it is out of sync with
87 the video in several different ways. You can also use it for making
88 new subtitles from scratch (using the time-line /waveform/spectrogram)
89 or for translating subtitles.
90 '';
91- maintainers = with maintainers; [ paveloom ];
092 platforms = platforms.all;
93 sourceProvenance = with sourceTypes; [ binaryNativeCode ];
094 };
95}
···1{ lib
2, stdenv
3+, fetchzip
4+, makeDesktopItem
5+, nix-update-script
6+7, copyDesktopItems
8+, icoutils
9, makeWrapper
10+11, ffmpeg
12, gtk2
13, hunspell
014, mono
15, mpv
16, tesseract4
017}:
1819stdenv.mkDerivation rec {
20 pname = "subtitleedit";
21+ version = "4.0.2";
2223 src = fetchzip {
24 url = "https://github.com/SubtitleEdit/subtitleedit/releases/download/${version}/SE${lib.replaceStrings [ "." ] [ "" ] version}.zip";
25+ hash = "sha256-kcs2h6HeWniJhGDNsy+EBauXbiDIlLCOJkVOCIzLBzM=";
26 stripRoot = false;
27 };
28···8283 meta = with lib; {
84 description = "A subtitle editor";
0085 longDescription = ''
86 With Subtitle Edit you can easily adjust a subtitle if it is out of sync with
87 the video in several different ways. You can also use it for making
88 new subtitles from scratch (using the time-line /waveform/spectrogram)
89 or for translating subtitles.
90 '';
91+ homepage = "https://nikse.dk/subtitleedit";
92+ license = licenses.gpl3Plus;
93 platforms = platforms.all;
94 sourceProvenance = with sourceTypes; [ binaryNativeCode ];
95+ maintainers = with maintainers; [ paveloom ];
96 };
97}