summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.4/toys/default.nix
blob: 30428c947da13328bcd5bd5753f92f64fbdb0dcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, fetchurl, lib, cmake, qt4, perl, kdelibs, kdebase_workspace, automoc4, phonon}:

stdenv.mkDerivation {
  name = "kdetoys-4.4.5";
  src = fetchurl {
    url = mirror://kde/stable/4.4.5/src/kdetoys-4.4.5.tar.bz2;
    sha256 = "0cydhkgx2aqn2z0hjd7kg0da18niq89xixfhc7sq4g92xc9fryq1";
  };
  buildInputs = [ cmake qt4 perl kdelibs kdebase_workspace automoc4 phonon ];
  meta = {
    description = "KDE Toys";
    license = "GPL";
    homepage = http://www.kde.org;
    inherit (kdelibs.meta) maintainers platforms;
  };
}