Merge pull request #114520 from erictapen/sub-batch-0.4.0
This commit is contained in:
commit
443aa55529
3 changed files with 49 additions and 6 deletions
33
pkgs/applications/video/alass/default.nix
Normal file
33
pkgs/applications/video/alass/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
, makeWrapper
|
||||||
|
, ffmpeg
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "alass";
|
||||||
|
version = "2.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kaegi";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-q1IV9TtmznpR7RO75iN0p16nmTja5ADWqFj58EOPWvU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-6CVa/ypz37bm/3R0Gi65ovu4SIwWcgVde3Z2W1R16mk=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram "$out/bin/alass-cli" --prefix PATH : "${lib.makeBinPath [ ffmpeg ]}"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Automatic Language-Agnostic Subtitle Synchronization";
|
||||||
|
homepage = "https://github.com/kaegi/alass";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ erictapen ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,21 +1,29 @@
|
||||||
{ lib, stdenv
|
{ stdenv
|
||||||
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
|
, makeWrapper
|
||||||
|
, alass
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "sub-batch";
|
pname = "sub-batch";
|
||||||
version = "0.3.0";
|
version = "0.4.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "kl";
|
owner = "kl";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
# Upstream doesn't tag releases.
|
rev = "v${version}";
|
||||||
rev = "631bd6e2d931f8a8e12798f4b6460739a14bcfff";
|
sha256 = "sha256-5fDnSmnnVB1RGrNrnmp40OGFF+OAhppnhOjVgnYxXr0=";
|
||||||
sha256 = "sha256-424e40v2LBxlmgDKxvsT/iuUn/IKWPKMwih0cSQ5sFE=";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-l+BTF9PGb8bG8QHhNCoBsrsVX8nlRjPlaea1ESFfMW0=";
|
cargoSha256 = "sha256-cj1htJcUPCeYbP0t15UcMv4WQAG7tUROb97v4rUeMvU=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram "$out/bin/sub-batch" --prefix PATH : "${lib.makeBinPath [ alass ]}"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Match and rename subtitle files to video files and perform other batch operations on subtitle files";
|
description = "Match and rename subtitle files to video files and perform other batch operations on subtitle files";
|
||||||
|
|
|
@ -13250,6 +13250,8 @@ in
|
||||||
|
|
||||||
agg = callPackage ../development/libraries/agg { };
|
agg = callPackage ../development/libraries/agg { };
|
||||||
|
|
||||||
|
alass = callPackage ../applications/video/alass { };
|
||||||
|
|
||||||
allegro = allegro4;
|
allegro = allegro4;
|
||||||
allegro4 = callPackage ../development/libraries/allegro {};
|
allegro4 = callPackage ../development/libraries/allegro {};
|
||||||
allegro5 = callPackage ../development/libraries/allegro/5.nix {};
|
allegro5 = callPackage ../development/libraries/allegro/5.nix {};
|
||||||
|
|
Loading…
Reference in a new issue