forked from mirrors/nixpkgs
kde-inotify-survey: init
This commit is contained in:
parent
c38151aa5e
commit
eab21608de
|
@ -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 {};
|
||||
|
|
30
pkgs/applications/kde/kde-inotify-survey.nix
Normal file
30
pkgs/applications/kde/kde-inotify-survey.nix
Normal 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 = [];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue