2010-02-10 16:06:50 +01:00
|
|
|
{stdenv, fetchurl, lib, cmake, qt4, perl, kdelibs, kdebase_workspace, automoc4, phonon}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-06-04 13:13:47 +02:00
|
|
|
name = "kdetoys-4.4.4";
|
2010-02-10 16:06:50 +01:00
|
|
|
src = fetchurl {
|
2010-06-04 13:13:47 +02:00
|
|
|
url = mirror://kde/stable/4.4.4/src/kdetoys-4.4.4.tar.bz2;
|
|
|
|
sha256 = "16q5fyvl3j3n6f90kw172rz12m3rf6si3wka3wpgbzz3dcl8hda8";
|
2010-02-10 16:06:50 +01:00
|
|
|
};
|
|
|
|
buildInputs = [ cmake qt4 perl kdelibs kdebase_workspace automoc4 phonon ];
|
|
|
|
meta = {
|
|
|
|
description = "KDE Toys";
|
|
|
|
license = "GPL";
|
|
|
|
homepage = http://www.kde.org;
|
|
|
|
maintainers = [ lib.maintainers.sander ];
|
|
|
|
};
|
|
|
|
}
|