nixpkgs/pkgs/desktops/kde-4.4/webdev/default.nix
Sander van der Burg 5984fe2daa Took viric's update script from the 4.3.x tree and updated KDE to 4.4.1
svn path=/nixpkgs/trunk/; revision=20348
2010-03-02 22:49:08 +00:00

18 lines
582 B
Nix

{ stdenv, fetchurl, lib, cmake, qt4, perl, libxml2, libxslt, boost
, kdelibs, kdepimlibs, automoc4, phonon}:
stdenv.mkDerivation {
name = "kdewebdev-4.4.1";
src = fetchurl {
url = mirror://kde/stable/4.4.1/src/kdewebdev-4.4.1.tar.bz2;
sha256 = "1c7dqvnd0q4n1ci128iqf83b7hvcz9n0m3djkdcid3q8b0maish0";
};
buildInputs = [ cmake qt4 perl libxml2 libxslt boost kdelibs kdepimlibs automoc4 phonon ];
meta = {
description = "KDE Web development utilities";
license = "GPL";
homepage = http://www.kde.org;
maintainers = [ lib.maintainers.sander ];
};
}