Commit fbae2ec8 authored by toastal's avatar toastal
Browse files

notify-osd: remove fat `with lib`

parent 99e1037b
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -39,12 +39,12 @@ stdenv.mkDerivation (finalAttrs: {
      --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
  '';

  meta = with lib; {
  meta = {
    description = "Daemon that displays passive pop-up notifications";
    mainProgram = "notify-osd";
    homepage = "https://launchpad.net/notify-osd";
    license = licenses.gpl3;
    maintainers = [ maintainers.bodil ];
    platforms = platforms.linux;
    license = lib.licenses.gpl3;
    maintainers = with lib.maintainers; [ bodil ];
    platforms = lib.platforms.linux;
  };
})