Unverified Commit c9cf436d authored by Daniel Nagy's avatar Daniel Nagy
Browse files

gotop: remove `with lib;` from meta

parent def5bfa8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -44,12 +44,12 @@ buildGoModule (finalAttrs: {
    installManPage gotop.1
  '';

  meta = with lib; {
  meta = {
    description = "Terminal based graphical activity monitor inspired by gtop and vtop";
    homepage = "https://github.com/xxxserxxx/gotop";
    changelog = "https://github.com/xxxserxxx/gotop/raw/v${finalAttrs.version}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = [ maintainers.magnetophon ];
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.magnetophon ];
    mainProgram = "gotop";
  };
})