sub-batch: init at 0.3.0
This commit is contained in:
parent
f3c1e795bb
commit
509cd74e49
27
pkgs/applications/video/sub-batch/default.nix
Normal file
27
pkgs/applications/video/sub-batch/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "sub-batch";
|
||||||
|
version = "0.3.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kl";
|
||||||
|
repo = pname;
|
||||||
|
# Upstream doesn't tag releases.
|
||||||
|
rev = "631bd6e2d931f8a8e12798f4b6460739a14bcfff";
|
||||||
|
sha256 = "sha256-424e40v2LBxlmgDKxvsT/iuUn/IKWPKMwih0cSQ5sFE=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-l+BTF9PGb8bG8QHhNCoBsrsVX8nlRjPlaea1ESFfMW0=";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Match and rename subtitle files to video files and perform other batch operations on subtitle files";
|
||||||
|
homepage = "https://github.com/kl/sub-batch";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ erictapen ];
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
|
};
|
||||||
|
}
|
@ -16441,6 +16441,8 @@ in
|
|||||||
streamlink = callPackage ../applications/video/streamlink { pythonPackages = python3Packages; };
|
streamlink = callPackage ../applications/video/streamlink { pythonPackages = python3Packages; };
|
||||||
streamlink-twitch-gui-bin = callPackage ../applications/video/streamlink-twitch-gui/bin.nix {};
|
streamlink-twitch-gui-bin = callPackage ../applications/video/streamlink-twitch-gui/bin.nix {};
|
||||||
|
|
||||||
|
sub-batch = callPackage ../applications/video/sub-batch { };
|
||||||
|
|
||||||
subdl = callPackage ../applications/video/subdl { };
|
subdl = callPackage ../applications/video/subdl { };
|
||||||
|
|
||||||
subtitleeditor = callPackage ../applications/video/subtitleeditor { enchant = enchant1; };
|
subtitleeditor = callPackage ../applications/video/subtitleeditor { enchant = enchant1; };
|
||||||
|
Loading…
Reference in New Issue
Block a user