Unverified Commit bd605f2f authored by Mikael Voss's avatar Mikael Voss
Browse files

eza: remove use of with lib

parent 4891878c
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;
  };
})