KDE: Konq-plugins: packaged

svn path=/nixpkgs/trunk/; revision=23891
This commit is contained in:
Evgeny Egorochkin 2010-09-22 07:53:28 +00:00
parent 84a1800124
commit cbda1c23bb
2 changed files with 25 additions and 0 deletions

View File

@ -309,6 +309,10 @@ pkgs.recurseIntoAttrs (rec {
inherit automoc4 phonon;
};
konqPlugins = import ./extragear/konq-plugins {
inherit (pkgs) stdenv fetchurl cmake qt4 gettext;
inherit kdelibs automoc4 phonon kdebase;
};
### LOCALIZATION
l10n = pkgs.recurseIntoAttrs (import ./l10n {

View File

@ -0,0 +1,21 @@
{ stdenv, fetchurl, kdelibs, cmake, qt4, automoc4, phonon, kdebase, gettext }:
stdenv.mkDerivation rec {
name = "konq-plugins-${version}";
version = "4.4.0";
src = fetchurl {
url = http://ftp.riken.go.jp/pub/FreeBSD/distfiles/KDE/extragear/konq-plugins-4.4.0.tar.bz2;
sha256 = "1hn722rcdcwmhfnn89rnvp2b4d8gds4nm483ps3jkk83d7f2xmbi";
};
buildInputs = [ cmake kdelibs qt4 automoc4 phonon kdebase gettext ];
meta = with stdenv.lib; {
description = "Various plugins for Konqueror";
license = "GPL";
homepage = http://kde.org/;
maintainers = [ maintainers.phreedom ];
platforms = kdelibs.meta.platforms;
};
}