nixpkgs/pkgs/desktops/kde-4.3/toys/default.nix
Sander van der Burg f8ad31189f Massive KDE upgrade:
- Upgraded KDE to 4.3.4
- Upgraded KOffice to 2.1.0
- Upgraded Konversation to 1.2.1
- Upgraded kdesvn to 1.4.1
- Upgraded ktorrent to 3.3.1


svn path=/nixpkgs/trunk/; revision=18751
2009-12-02 10:51:33 +00:00

18 lines
533 B
Nix

{stdenv, fetchurl, lib, cmake, qt4, perl, kdelibs, kdebase_workspace, automoc4, phonon}:
stdenv.mkDerivation {
name = "kdetoys-4.3.4";
src = fetchurl {
url = mirror://kde/stable/4.3.4/src/kdetoys-4.3.4.tar.bz2;
sha1 = "96f6121990590acd3fb5b8cae25ef98b5572733c";
};
includeAllQtDirs=true;
buildInputs = [ cmake qt4 perl kdelibs kdebase_workspace automoc4 phonon ];
meta = {
description = "KDE Toys";
license = "GPL";
homepage = http://www.kde.org;
maintainers = [ lib.maintainers.sander ];
};
}