mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Added konversation for KDE 4.x package
svn path=/nixpkgs/trunk/; revision=17741
This commit is contained in:
parent
926f20a1ee
commit
4232caa53f
@ -251,6 +251,13 @@ pkgs.recurseIntoAttrs (rec {
|
||||
inherit automoc4 phonon qca2;
|
||||
};
|
||||
|
||||
konversation = import ./extragear/konversation {
|
||||
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl gettext;
|
||||
inherit (pkgs.xlibs) libXScrnSaver;
|
||||
inherit kdelibs kdepimlibs;
|
||||
inherit automoc4 phonon qca2;
|
||||
};
|
||||
|
||||
gtk_qt_engine = import ./extragear/gtk-qt-engine {
|
||||
inherit (pkgs) stdenv fetchurl cmake qt4 perl gettext;
|
||||
inherit (pkgs.xlibs) libX11;
|
||||
|
23
pkgs/desktops/kde-4.3/extragear/konversation/default.nix
Normal file
23
pkgs/desktops/kde-4.3/extragear/konversation/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl, lib, cmake, qt4, perl, gettext, libXScrnSaver
|
||||
, kdelibs, kdepimlibs, automoc4, phonon, qca2}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "konversation";
|
||||
src = fetchurl {
|
||||
url = mirror://kde/stable/konversation/1.2/src/konversation-1.2.tar.bz2;
|
||||
sha256 = "16plhy7m8sch52a8hyzsqgc10wj4lgygqbwicfssbad7l6j2a935";
|
||||
};
|
||||
includeAllQtDirs=true;
|
||||
CMAKE_PREFIX_PATH=kdepimlibs;
|
||||
buildInputs = [ cmake qt4 perl gettext stdenv.gcc.libc libXScrnSaver kdelibs kdepimlibs automoc4 phonon qca2 ];
|
||||
patchPhase = ''
|
||||
echo "include_directories(${qt4}/include/QtGui)" > tmp
|
||||
cp src/CMakeLists.txt src/CMakeLists.bak
|
||||
cat tmp src/CMakeLists.bak > src/CMakeLists.txt
|
||||
'';
|
||||
meta = {
|
||||
description = "Integrated IRC client for KDE";
|
||||
license = "GPL";
|
||||
maintainers = [ lib.maintainers.sander ];
|
||||
};
|
||||
}
|
@ -527,6 +527,7 @@ in {
|
||||
kmplayer = linux;
|
||||
ktorrent = linux;
|
||||
koffice = linux;
|
||||
konversation = linux;
|
||||
kdesvn = linux;
|
||||
amarok = linux;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user