nixpkgs/pkgs/desktops/kde-4.3/base/default.nix

22 lines
805 B
Nix
Raw Normal View History

{ stdenv, fetchurl, lib, cmake, perl, qt4, kdelibs, pciutils, libraw1394
, kdebase_workspace
, automoc4, phonon, strigi, qimageblitz, soprano}:
stdenv.mkDerivation {
name = "kdebase-4.3.2";
src = fetchurl {
url = mirror://kde/stable/4.3.2/src/kdebase-4.3.2.tar.bz2;
sha1 = "m1zi9pki0cs9y2g4zds8ki68jv2mvin9";
};
includeAllQtDirs=true;
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 ];
};
}