From eab21608dee657d15e64dbb3a965f382cccec467 Mon Sep 17 00:00:00 2001 From: K900 Date: Sat, 18 Mar 2023 01:39:35 +0300 Subject: [PATCH] kde-inotify-survey: init --- pkgs/applications/kde/default.nix | 1 + pkgs/applications/kde/kde-inotify-survey.nix | 30 ++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/applications/kde/kde-inotify-survey.nix 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 = []; + }; +}