85f96822a0
Rust 1.50.0 incorporated a Cargo change (rust-lang/cargo#8937) in which cargo vendor erroneously changed permissions of vendored crates. This was fixed in Rust 1.51.0 (rust-lang/cargo#9131). Unfortunately, this means that all cargoSha256/cargoHashes produced during the Rust 1.50.0 cycle are potentially broken. This change updates cargoSha256/cargoHash tree-wide. Fixes #121994.
36 lines
846 B
Nix
36 lines
846 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, makeWrapper
|
|
, alass
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "sub-batch";
|
|
version = "0.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kl";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-5fDnSmnnVB1RGrNrnmp40OGFF+OAhppnhOjVgnYxXr0=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-+ufa4Cgue8o9CTB3JDcQ38SlUq8PcRDyj+qNSAFpTas=";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postInstall = ''
|
|
wrapProgram "$out/bin/sub-batch" --prefix PATH : "${lib.makeBinPath [ alass ]}"
|
|
'';
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|