about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kde-inotify-survey.nix
blob: d90d789c57761a83f03103479e4989daeaca5708 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 = [];
  };
}