nixpkgs/pkgs/applications/misc/rsibreak/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
842 B
Nix
Raw Permalink Normal View History

2018-04-02 15:56:25 +00:00
{
mkDerivation, fetchurl, lib,
extra-cmake-modules, kdoctools,
knotifyconfig, kidletime, kwindowsystem, ktextwidgets, kcrash
}:
mkDerivation rec {
2018-04-02 15:56:25 +00:00
pname = "rsibreak";
version = "0.12.13";
2018-04-02 15:56:25 +00:00
src = fetchurl {
url = "mirror://kde/stable/rsibreak/${version}/rsibreak-${version}.tar.xz";
2020-09-25 12:57:49 +00:00
sha256 = "N0C+f788fq5yotSC54H2K4WDc6PnGi8Nh/vXL4v0fxo=";
2018-04-02 15:56:25 +00:00
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [ knotifyconfig kidletime kwindowsystem ktextwidgets kcrash ];
meta = with lib; {
description = "Takes care of your health and regularly breaks your work to avoid repetitive strain injury (RSI)";
mainProgram = "rsibreak";
2018-04-02 15:56:25 +00:00
license = licenses.gpl2;
homepage = "https://www.kde.org/applications/utilities/rsibreak/";
2018-04-02 15:56:25 +00:00
maintainers = with maintainers; [ vandenoever ];
};
}