Unverified Commit 351b9551 authored by Heitor Augusto's avatar Heitor Augusto
Browse files

pop-launcher: remove `with lib` from meta

parent 997975b2
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -66,13 +66,13 @@ rustPlatform.buildRustPackage rec {
        --replace-fail '/usr/bin/gnome-terminal' 'gnome-terminal'
  '';

  meta = with lib; {
  meta = {
    description = "Modular IPC-based desktop launcher service";
    homepage = "https://github.com/pop-os/launcher";
    platforms = platforms.linux;
    license = licenses.mpl20;
    maintainers = with maintainers; [ samhug ];
    platforms = lib.platforms.linux;
    license = lib.licenses.mpl20;
    maintainers = with lib.maintainers; [ samhug ];
    mainProgram = "pop-launcher";
    teams = [ teams.cosmic ];
    teams = [ lib.teams.cosmic ];
  };
}