summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.4/toys/default.nix
blob: 4ee8d6ec8b50f5d489fc6bb69b85d9f3823f1d79 (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.1";
  src = fetchurl {
    url = mirror://kde/stable/4.4.1/src/kdetoys-4.4.1.tar.bz2;
    sha256 = "1c5rvycdmww5i141aavx1fs5zny4bz9a6yh8q8fm1pnfppvhvfa3";
  };
  buildInputs = [ cmake qt4 perl kdelibs kdebase_workspace automoc4 phonon ];
  meta = {
    description = "KDE Toys";
    license = "GPL";
    homepage = http://www.kde.org;
    maintainers = [ lib.maintainers.sander ];
  };
}