e0ff817c40
I updated cmake to use CMAKE_PREFIX_PATH instead of CMAKE_INCLUDE_PATH and CMAKE_LIBRARY_PATH. There were some expressions in kde that required CMAKE_PREFIX_PATH, and now they are not anymore a special case. I updated most kde-4.4 files to point to kde-4.4.0 sources instead of 4.3.4 . svn path=/nixpkgs/trunk/; revision=19965
22 lines
772 B
Nix
22 lines
772 B
Nix
{ stdenv, fetchurl, lib, cmake, qt4, perl, gettext, libXScrnSaver
|
|
, kdelibs, kdepimlibs, automoc4, phonon, qca2}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "konversation-1.2.1";
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/konversation/1.2.1/src/konversation-1.2.1.tar.bz2;
|
|
sha256 = "1rx4xgw14cfzkxghgn80np8i2ndq26sbdvv96g46r0s14qkdyq8w";
|
|
};
|
|
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 ];
|
|
};
|
|
}
|