Commit 6effeaf8 authored by Niklas Korz's avatar Niklas Korz
Browse files

shaka-packager: remove `with lib;` expressions

parent 04883e8f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -96,13 +96,13 @@ stdenv.mkDerivation (finalAttrs: {
    };
  };

  meta = with lib; {
  meta = {
    description = "Media packaging framework for VOD and Live DASH and HLS applications";
    homepage = "https://shaka-project.github.io/shaka-packager/html/";
    changelog = "https://github.com/shaka-project/shaka-packager/releases/tag/v${finalAttrs.version}";
    license = licenses.bsd3;
    license = lib.licenses.bsd3;
    mainProgram = "packager";
    maintainers = with maintainers; [ niklaskorz ];
    platforms = platforms.all;
    maintainers = with lib.maintainers; [ niklaskorz ];
    platforms = lib.platforms.all;
  };
})