2009-09-09 12:53:32 +02:00
|
|
|
{ stdenv, fetchurl, lib, cmake, perl, qt4, kdelibs, pciutils, libraw1394
|
|
|
|
, kdebase_workspace
|
|
|
|
, automoc4, phonon, strigi, qimageblitz, soprano}:
|
2009-08-15 16:02:49 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-09-09 12:53:32 +02:00
|
|
|
name = "kdebase-4.3.1";
|
2009-08-15 16:02:49 +02:00
|
|
|
src = fetchurl {
|
2009-09-09 12:53:32 +02:00
|
|
|
url = mirror://kde/stable/4.3.1/src/kdebase-4.3.1.tar.bz2;
|
|
|
|
sha1 = "005681277615a0a3ec737bdd07989763fa1ae781";
|
2009-08-15 16:02:49 +02:00
|
|
|
};
|
|
|
|
includeAllQtDirs=true;
|
|
|
|
buildInputs = [ cmake perl qt4 kdelibs pciutils stdenv.gcc.libc libraw1394
|
2009-09-09 12:53:32 +02:00
|
|
|
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 ];
|
|
|
|
};
|
2009-08-15 16:02:49 +02:00
|
|
|
}
|