biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / rsibreak / default.nix
blob24d0a0eaa6ab95284e5b56f257c80c6c12a98be9
2   mkDerivation, fetchurl, lib,
3   extra-cmake-modules, kdoctools,
4   knotifyconfig, kidletime, kwindowsystem, ktextwidgets, kcrash
5 }:
7 mkDerivation rec {
8   pname = "rsibreak";
9   version = "0.12.13";
11   src = fetchurl {
12     url = "mirror://kde/stable/rsibreak/${version}/rsibreak-${version}.tar.xz";
13     sha256 = "N0C+f788fq5yotSC54H2K4WDc6PnGi8Nh/vXL4v0fxo=";
14   };
16   nativeBuildInputs = [ extra-cmake-modules kdoctools ];
17   propagatedBuildInputs = [ knotifyconfig kidletime kwindowsystem ktextwidgets kcrash ];
19   meta = with lib; {
20     description = "Takes care of your health and regularly breaks your work to avoid repetitive strain injury (RSI)";
21     mainProgram = "rsibreak";
22     license = licenses.gpl2;
23     homepage = "https://www.kde.org/applications/utilities/rsibreak/";
24     maintainers = with maintainers; [ vandenoever ];
25   };