Commit f1e4f656 authored by Doron Behar's avatar Doron Behar Committed by github-actions[bot]
Browse files

mutter: no with lib; in meta

(cherry picked from commit e7cf76b9)
parent 5dfc97e3
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -224,13 +224,13 @@ stdenv.mkDerivation (finalAttrs: {
    };
  };

  meta = with lib; {
  meta = {
    description = "Window manager for GNOME";
    mainProgram = "mutter";
    homepage = "https://gitlab.gnome.org/GNOME/mutter";
    changelog = "https://gitlab.gnome.org/GNOME/mutter/-/blob/${finalAttrs.version}/NEWS?ref_type=tags";
    license = licenses.gpl2Plus;
    teams = [ teams.gnome ];
    platforms = platforms.linux;
    license = lib.licenses.gpl2Plus;
    teams = [ lib.teams.gnome ];
    platforms = lib.platforms.linux;
  };
})