eza: remove use of with lib
This commit is contained in:
@@ -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;
|
||||
};
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user