biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / kde / kde-inotify-survey.nix
blob9adbbe3a08c1e3f915c2fbfc3617729ef47d91cd
1 { mkDerivation
2 , lib
3 , extra-cmake-modules
4 , kauth
5 , kcoreaddons
6 , kdbusaddons
7 , ki18n
8 , knotifications
9 }:
11 mkDerivation {
12   pname = "kde-inotify-survey";
14   nativeBuildInputs = [ extra-cmake-modules ];
16   buildInputs = [
17     kauth
18     kcoreaddons
19     kdbusaddons
20     ki18n
21     knotifications
22   ];
24   meta = {
25     description = "Tooling for monitoring inotify limits and informing the user when they have been or about to be reached";
26     mainProgram = "kde-inotify-survey";
27     homepage = "https://invent.kde.org/system/kde-inotify-survey";
28     license = lib.licenses.gpl2Plus;
29     maintainers = [ ];
30   };