2020-04-24 23:36:52 +00:00
|
|
|
{
|
|
|
|
mkDerivation, fetchurl, lib,
|
|
|
|
extra-cmake-modules, kdoctools,
|
|
|
|
knotifyconfig, kidletime, kwindowsystem, ktextwidgets, kcrash
|
|
|
|
}:
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "rsibreak";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "0.12.13";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-02 11:29:13 +00:00
|
|
|
url = "mirror://kde/stable/rsibreak/${version}/rsibreak-${version}.tar.xz";
|
2020-10-07 09:15:18 +00:00
|
|
|
sha256 = "N0C+f788fq5yotSC54H2K4WDc6PnGi8Nh/vXL4v0fxo=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
|
|
propagatedBuildInputs = [ knotifyconfig kidletime kwindowsystem ktextwidgets kcrash ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-11-03 02:18:15 +00:00
|
|
|
description = "Takes care of your health and regularly breaks your work to avoid repetitive strain injury (RSI)";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
homepage = "https://www.kde.org/applications/utilities/rsibreak/";
|
|
|
|
maintainers = with maintainers; [ vandenoever ];
|
|
|
|
};
|
|
|
|
}
|