2010-02-10 16:06:50 +01:00
|
|
|
{ stdenv, fetchurl, lib, cmake, perl, qt4, kdelibs, pciutils, libraw1394
|
|
|
|
, kdebase_workspace
|
|
|
|
, automoc4, phonon, strigi, qimageblitz, soprano}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-02-12 22:58:27 +01:00
|
|
|
name = "kdebase-4.4.0";
|
2010-02-10 16:06:50 +01:00
|
|
|
src = fetchurl {
|
2010-02-12 22:58:27 +01:00
|
|
|
url = mirror://kde/stable/4.4.0/src/kdebase-4.4.0.tar.bz2;
|
|
|
|
sha256 = "0nkl0kacp87livsqdqkqvgwq18mck5jafdz91jc4qhqkcf8p5x4x";
|
2010-02-10 16:06:50 +01:00
|
|
|
};
|
|
|
|
buildInputs = [ cmake perl qt4 kdelibs pciutils stdenv.gcc.libc libraw1394
|
|
|
|
kdebase_workspace automoc4 phonon strigi qimageblitz soprano ];
|
|
|
|
meta = {
|
|
|
|
description = "KDE Base components";
|
|
|
|
longDescription = "Applications that form the KDE desktop, like Plasma, System Settings, Konqueror, Dolphin, Kate, and Konsole";
|
|
|
|
license = "GPL";
|
|
|
|
homepage = http://www.kde.org;
|
|
|
|
maintainers = [ lib.maintainers.sander ];
|
|
|
|
};
|
|
|
|
}
|