2021-02-26 22:05:22 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2021-01-10 09:31:25 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
2021-02-26 22:05:22 +00:00
|
|
|
, makeWrapper
|
|
|
|
, alass
|
2021-01-10 09:31:25 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "sub-batch";
|
2022-01-23 15:55:10 +00:00
|
|
|
version = "1.0.0";
|
2021-01-10 09:31:25 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kl";
|
|
|
|
repo = pname;
|
2021-02-26 22:05:22 +00:00
|
|
|
rev = "v${version}";
|
2022-01-23 15:55:10 +00:00
|
|
|
sha256 = "sha256-N+3KyBlLG90C3D5ivgj6qedtKsUBoBHr89gmxyAIfVI=";
|
2021-01-10 09:31:25 +00:00
|
|
|
};
|
|
|
|
|
2022-01-23 15:55:10 +00:00
|
|
|
cargoSha256 = "sha256-rjhSosiLIgcSw6OHpFmGNHXGUdf2QsiIXFVgtO9qNY0=";
|
2021-02-26 22:05:22 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/sub-batch" --prefix PATH : "${lib.makeBinPath [ alass ]}"
|
|
|
|
'';
|
2021-01-10 09:31:25 +00:00
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
meta = with lib; {
|
2021-01-10 09:31:25 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|