Add yakuake
svn path=/nixpkgs/trunk/; revision=21954
This commit is contained in:
parent
32edcce80b
commit
e1f009b9df
@ -311,6 +311,11 @@ pkgs.recurseIntoAttrs (rec {
|
|||||||
inherit automoc4 phonon;
|
inherit automoc4 phonon;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
yakuake = import ./extragear/yakuake {
|
||||||
|
inherit (pkgs) stdenv fetchurl cmake perl gettext;
|
||||||
|
inherit kdelibs automoc4 qt4 phonon;
|
||||||
|
};
|
||||||
|
|
||||||
### LOCALIZATION
|
### LOCALIZATION
|
||||||
|
|
||||||
l10n = pkgs.recurseIntoAttrs (import ./l10n {
|
l10n = pkgs.recurseIntoAttrs (import ./l10n {
|
||||||
|
19
pkgs/desktops/kde-4.4/extragear/yakuake/default.nix
Normal file
19
pkgs/desktops/kde-4.4/extragear/yakuake/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user