Unverified Commit 26829ce5 authored by Ethan Carter Edwards's avatar Ethan Carter Edwards
Browse files

phantom: remove meta = with lib;

parent ef2ed476
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -41,12 +41,12 @@ stdenv.mkDerivation {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    description = "Markdown editor with support for multi-tab";
    homepage = "https://codeberg.org/ItsZariep/Phantom";
    license = licenses.gpl3Only;
    license = lib.licenses.gpl3Only;
    mainProgram = "phantom";
    platforms = platforms.all;
    maintainers = with maintainers; [ reylak ];
    platforms = lib.platforms.all;
    maintainers = with lib.maintainers; [ reylak ];
  };
}