eza: remove use of with lib

This commit is contained in:
Mikael Voss
2025-04-04 12:49:55 +02:00
parent 4891878c17
commit bd605f2feb
+4 -4
View File
@@ -59,7 +59,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
ln -s eza $out/bin/exa
'';
meta = with lib; {
meta = {
description = "Modern, maintained replacement for ls";
longDescription = ''
eza is a modern replacement for ls. It uses colours for information by
@@ -71,13 +71,13 @@ rustPlatform.buildRustPackage (finalAttrs: {
'';
homepage = "https://github.com/eza-community/eza";
changelog = "https://github.com/eza-community/eza/releases/tag/v${finalAttrs.version}";
license = licenses.eupl12;
license = lib.licenses.eupl12;
mainProgram = "eza";
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
cafkafk
_9glenda
sigmasquadron
];
platforms = platforms.unix ++ platforms.windows;
platforms = with lib.platforms; unix ++ windows;
};
})