ulauncher: add desktop item (#436476)

This commit is contained in:
Peder Bergebakken Sundt
2025-09-01 02:30:22 +02:00
committed by GitHub
+13
View File
@@ -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/";