summary refs log tree commit diff
path: root/pkgs/tools/cd-dvd
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-07-06 20:54:58 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-07-06 23:34:40 -0300
commit70904d0cc04588b41c33cda09a0aa80eac44f8b5 (patch)
treeeafcfd50b0980ac4451880302dc217557a5b890d /pkgs/tools/cd-dvd
parent1d7c3a49858a3f37087aa4d53707d78b0358a95a (diff)
downloadnixpkgs-70904d0cc04588b41c33cda09a0aa80eac44f8b5.tar
nixpkgs-70904d0cc04588b41c33cda09a0aa80eac44f8b5.tar.gz
nixpkgs-70904d0cc04588b41c33cda09a0aa80eac44f8b5.tar.bz2
nixpkgs-70904d0cc04588b41c33cda09a0aa80eac44f8b5.tar.lz
nixpkgs-70904d0cc04588b41c33cda09a0aa80eac44f8b5.tar.xz
nixpkgs-70904d0cc04588b41c33cda09a0aa80eac44f8b5.tar.zst
nixpkgs-70904d0cc04588b41c33cda09a0aa80eac44f8b5.zip
ventoy: remove `with lib;`
Because I have a strong disgust about `with` since
https://nix.dev/recipes/best-practices#with-scopes
Diffstat (limited to 'pkgs/tools/cd-dvd')
-rw-r--r--pkgs/tools/cd-dvd/ventoy/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/cd-dvd/ventoy/default.nix b/pkgs/tools/cd-dvd/ventoy/default.nix
index 2edf7a5fdb7..f1902597acd 100644
--- a/pkgs/tools/cd-dvd/ventoy/default.nix
+++ b/pkgs/tools/cd-dvd/ventoy/default.nix
@@ -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 ];
   };
 })