Commit 70904d0c authored by Anderson Torres's avatar Anderson Torres
Browse files

ventoy: remove `with lib;`

Because I have a strong disgust about `with` since
https://nix.dev/recipes/best-practices#with-scopes
parent 1d7c3a49
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -186,7 +186,7 @@ stdenv.mkDerivation (finalAttrs: {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    homepage = "https://www.ventoy.net";
    description = "A New Bootable USB Solution";
    longDescription = ''
@@ -203,9 +203,9 @@ stdenv.mkDerivation (finalAttrs: {
      800+ image files are tested.  90%+ distros in DistroWatch supported.
    '';
    changelog = "https://www.ventoy.net/doc_news.html";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ AndersonTorres ];
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ AndersonTorres ];
    platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" "mipsel-linux" ];
    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
  };
})