ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / vi / vidmerger / package.nix
blobcf0412b42929d2266c5e3290089f54793aaf6d06
1 { lib
2 , ffmpeg
3 , rustPlatform
4 , fetchFromGitHub
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "vidmerger";
9   version = "0.3.2";
11   src = fetchFromGitHub {
12     owner = "TGotwig";
13     repo = "vidmerger";
14     rev = version;
15     hash = "sha256-E3Y1UaYXl6NdCMM7IepqFzWNuHaMGLCN5BvQ/lxjFoc=";
16   };
18   cargoLock = {
19     lockFile = ./Cargo.lock;
20   };
22   postPatch = ''
23     cp ${./Cargo.lock} Cargo.lock
24   '';
26   # Running cargo test -- . fails because it expects to have two mp4 files so that it can test the video merging functionalities
27   doCheck = false;
29   buildInputs = [
30     ffmpeg
31   ];
33   meta = with lib; {
34     description = "Merge video & audio files via CLI";
35     homepage = "https://github.com/TGotwig/vidmerger";
36     license = with licenses; [ mit commons-clause ];
37     maintainers = with maintainers; [ ByteSudoer ];
38     mainProgram = "vidmerger";
39   };