diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix index 24f5d50c1535..3e3f31c3a70b 100644 --- a/pkgs/applications/kde/default.nix +++ b/pkgs/applications/kde/default.nix @@ -113,6 +113,7 @@ let kcalutils = callPackage ./kcalutils.nix {}; kcharselect = callPackage ./kcharselect.nix {}; kcolorchooser = callPackage ./kcolorchooser.nix {}; + kde-inotify-survey = callPackage ./kde-inotify-survey.nix {}; kdebugsettings = callPackage ./kdebugsettings.nix {}; kdeconnect-kde = callPackage ./kdeconnect-kde.nix {}; kdegraphics-mobipocket = callPackage ./kdegraphics-mobipocket.nix {}; diff --git a/pkgs/applications/kde/kde-inotify-survey.nix b/pkgs/applications/kde/kde-inotify-survey.nix new file mode 100644 index 000000000000..d90d789c5776 --- /dev/null +++ b/pkgs/applications/kde/kde-inotify-survey.nix @@ -0,0 +1,30 @@ +{ mkDerivation +, lib +, extra-cmake-modules +, kauth +, kcoreaddons +, kdbusaddons +, ki18n +, knotifications +}: + +mkDerivation { + pname = "kde-inotify-survey"; + + nativeBuildInputs = [ extra-cmake-modules ]; + + buildInputs = [ + kauth + kcoreaddons + kdbusaddons + ki18n + knotifications + ]; + + meta = { + description = "Tooling for monitoring inotify limits and informing the user when they have been or about to be reached"; + homepage = "https://invent.kde.org/system/kde-inotify-survey"; + license = lib.licenses.gpl2Plus; + maintainers = []; + }; +}