3
0
Fork 0
forked from mirrors/nixpkgs

kde-inotify-survey: init

This commit is contained in:
K900 2023-03-18 01:39:35 +03:00
parent c38151aa5e
commit eab21608de
2 changed files with 31 additions and 0 deletions

View file

@ -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 {};

View file

@ -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 = [];
};
}