Add yakuake

svn path=/nixpkgs/trunk/; revision=21954
This commit is contained in:
Yury G. Kudryashov 2010-05-24 08:19:41 +00:00
parent 32edcce80b
commit e1f009b9df
2 changed files with 24 additions and 0 deletions

View File

@ -311,6 +311,11 @@ pkgs.recurseIntoAttrs (rec {
inherit automoc4 phonon;
};
yakuake = import ./extragear/yakuake {
inherit (pkgs) stdenv fetchurl cmake perl gettext;
inherit kdelibs automoc4 qt4 phonon;
};
### LOCALIZATION
l10n = pkgs.recurseIntoAttrs (import ./l10n {

View File

@ -0,0 +1,19 @@
{ stdenv, fetchurl, kdelibs, cmake, gettext, perl, automoc4, qt4, phonon }:
stdenv.mkDerivation rec {
name = "yakuake-2.9.6";
src = fetchurl {
url = "http://download.berlios.de/yakuake/${name}.tar.bz2";
sha256 = "08n6kdzk205rq1bs4yx5f2qawz6xigdhn9air0pbjsi1j630yfzq";
};
buildInputs = [ kdelibs cmake gettext perl automoc4 qt4 phonon stdenv.gcc.libc ];
meta = with stdenv.lib; {
homepage = http://yakuake.kde.org;
description = "Quad-style terminal emulator for KDE";
maintainers = [ maintainers.urkud ];
platforms = linux;
};
}