Commit ea9f4739 authored by Martin Joerg's avatar Martin Joerg
Browse files

lxqt.xdg-desktop-portal-lxqt: modernize

parent 7cddd344
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -15,14 +15,14 @@
  extraQtStyles ? [ ],
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "xdg-desktop-portal-lxqt";
  version = "1.2.0";

  src = fetchFromGitHub {
    owner = "lxqt";
    repo = "xdg-desktop-portal-lxqt";
    rev = version;
    tag = finalAttrs.version;
    hash = "sha256-y3VqDuFagKcG8O5m5qjRGtlUZXfIXV0tclvZLChhWkg=";
  };

@@ -53,11 +53,11 @@ stdenv.mkDerivation rec {

  passthru.updateScript = gitUpdater { };

  meta = with lib; {
  meta = {
    homepage = "https://github.com/lxqt/xdg-desktop-portal-lxqt";
    description = "Backend implementation for xdg-desktop-portal that is using Qt/KF5/libfm-qt";
    license = licenses.lgpl21Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ romildo ];
    license = lib.licenses.lgpl21Plus;
    platforms = lib.platforms.linux;
    maintainers = [ lib.maintainers.romildo ];
  };
}
})