Unverified Commit dc1675f8 authored by Pratham Patel's avatar Pratham Patel
Browse files

cosmic-session: remove `with lib`

parent b940b88c
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -51,16 +51,16 @@ rustPlatform.buildRustPackage (finalAttrs: {

  passthru.providedSessions = [ "cosmic" ];

  meta = with lib; {
  meta = {
    homepage = "https://github.com/pop-os/cosmic-session";
    description = "Session manager for the COSMIC desktop environment";
    license = licenses.gpl3Only;
    license = lib.licenses.gpl3Only;
    mainProgram = "cosmic-session";
    maintainers = with maintainers; [
    maintainers = with lib.maintainers; [
      a-kenji
      nyabinary
      thefossguy
    ];
    platforms = platforms.linux;
    platforms = lib.platforms.linux;
  };
})