biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / kde / kde-inotify-survey.nix
blob470e225ea0abd44ea1544e1d46a7acbeed6d1148
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   };