nixpkgs/pkgs/by-name/su/subtitleeditor/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

81 lines
1.7 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
pkg-config,
intltool,
file,
desktop-file-utils,
enchant,
gtk3,
gtkmm3,
gst_all_1,
hicolor-icon-theme,
libsigcxx,
libxmlxx,
xdg-utils,
isocodes,
wrapGAppsHook3,
}:
stdenv.mkDerivation rec {
pname = "subtitleeditor";
version = "unstable-2019-11-30";
src = fetchFromGitHub {
owner = "kitone";
repo = "subtitleeditor";
rev = "4c215f4cff4483c44361a2f1d45efc4c6670787f";
sha256 = "sha256-1Q1nd3GJ6iDGQv4SM2S1ehVW6kPdbqTn8KTtTb0obiQ=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
intltool
file
wrapGAppsHook3
];
buildInputs = [
desktop-file-utils
enchant
gtk3
gtkmm3
gst_all_1.gstreamer
gst_all_1.gstreamermm
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-ugly
gst_all_1.gst-libav
hicolor-icon-theme
libsigcxx
libxmlxx
xdg-utils
isocodes
];
enableParallelBuilding = true;
preConfigure = "substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file";
configureFlags = [ "--disable-debug" ];
meta = {
description = "GTK 3 application to edit video subtitles";
longDescription = ''
Subtitle Editor is a GTK 3 tool to edit subtitles for GNU/Linux/*BSD. It
can be used for new subtitles or as a tool to transform, edit, correct
and refine existing subtitle. This program also shows sound waves, which
makes it easier to synchronise subtitles to voices.
'';
homepage = "http://kitone.github.io/subtitleeditor/";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.plcplc ];
mainProgram = "subtitleeditor";
};
}