ventoy: remove with lib;

Because I have a strong disgust about `with` since
https://nix.dev/recipes/best-practices#with-scopes
This commit is contained in:
Anderson Torres 2023-07-06 20:54:58 -03:00
parent 1d7c3a4985
commit 70904d0cc0

View file

@ -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 ];
};
})