about summary refs log tree commit diff
path: root/pkgs/applications/misc/rsibreak/default.nix
blob: 42247572c2469f86ca69c3d3945992a1b55ff201 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, automoc4, cmake, gettext, perl, pkgconfig
, kdelibs, kdebase_workspace }:

let version = "0.11";
in
stdenv.mkDerivation rec {
  name = "rsibreak-${version}";

  src = fetchurl {
    url = "mirror://debian/pool/main/r/rsibreak/rsibreak_${version}.orig.tar.gz";
    sha256 = "0g27aswh8iz5v67v1wkjny4p100vs2gm0lw0qzfkg6sw1pb4i519";
  };

  nativeBuildInputs = [ automoc4 cmake gettext perl pkgconfig ];

  buildInputs = [ kdelibs kdebase_workspace ];

  meta = {
    homepage = http://userbase.kde.org/RSIBreak; # http://www.rsibreak.org/ is down since 2011
    description = "Utility to help prevent repetitive strain injury for KDE 4";
    inherit (kdelibs.meta) platforms maintainers;
  };
}