Unverified Commit 23da0aa9 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

ulauncher: add desktop item (#436476)

parents e5dce426 de255942
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@
  xvfb-run,
  librsvg,
  libX11,
  copyDesktopItems,
  makeDesktopItem,
}:

python3Packages.buildPythonApplication rec {
@@ -35,6 +37,7 @@ python3Packages.buildPythonApplication rec {
    intltool
    wrapGAppsHook3
    gdk-pixbuf
    copyDesktopItems
  ];

  buildInputs = [
@@ -123,6 +126,16 @@ python3Packages.buildPythonApplication rec {
    updateScript = nix-update-script { };
  };

  desktopItems = [
    (makeDesktopItem {
      name = "ulauncher";
      desktopName = "Ulauncher";
      exec = "ulauncher";
      categories = [ "Utility" ];
      icon = "ulauncher";
    })
  ];

  meta = with lib; {
    description = "Fast application launcher for Linux, written in Python, using GTK";
    homepage = "https://ulauncher.io/";