Commit 423d5437 authored by kyehn's avatar kyehn
Browse files

vidmerger: remove with lib

parent 774a012f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -34,14 +34,14 @@ rustPlatform.buildRustPackage (finalAttrs: {
    extraArgs = [ "--generate-lockfile" ];
  };

  meta = with lib; {
  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";
  };
})