vidmerger: 0.3.0 -> 0.4.0 (#438624)

This commit is contained in:
tomberek
2025-09-04 03:19:11 -04:00
committed by GitHub
2 changed files with 1868 additions and 278 deletions
+1854 -267
View File
File diff suppressed because it is too large Load Diff
+14 -11
View File
@@ -3,22 +3,21 @@
ffmpeg,
rustPlatform,
fetchFromGitHub,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "vidmerger";
version = "0.3.2";
version = "0.4.0";
src = fetchFromGitHub {
owner = "TGotwig";
repo = "vidmerger";
rev = version;
hash = "sha256-E3Y1UaYXl6NdCMM7IepqFzWNuHaMGLCN5BvQ/lxjFoc=";
tag = finalAttrs.version;
hash = "sha256-N/iX0EN5R4oG4XHhpd/VaihrEHv5uT+grAJ6/KfSORE=";
};
cargoLock = {
lockFile = ./Cargo.lock;
};
cargoLock.lockFile = ./Cargo.lock;
postPatch = ''
cp ${./Cargo.lock} Cargo.lock
@@ -31,14 +30,18 @@ rustPlatform.buildRustPackage rec {
ffmpeg
];
meta = with lib; {
passthru.updateScript = nix-update-script {
extraArgs = [ "--generate-lockfile" ];
};
meta = {
description = "Merge video & audio files via CLI";
homepage = "https://github.com/TGotwig/vidmerger";
license = with licenses; [
license = with lib.licenses; [
mit
commons-clause
];
maintainers = with maintainers; [ ByteSudoer ];
maintainers = with lib.maintainers; [ ByteSudoer ];
mainProgram = "vidmerger";
};
}
})