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
20 lines
707 B
Nix
20 lines
707 B
Nix
{ stdenv, fetchurl, lib, cmake, qt4, perl, xscreensaver
|
|
, kdelibs, kdebase_workspace, automoc4, phonon, strigi, eigen}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kdeartwork-4.4.0";
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/4.4.0/src/kdeartwork-4.4.0.tar.bz2;
|
|
sha1 = "08djygxycrpgn09506lmkm86d1jbl8m0bbi79jdd4q3c1w76dbi4";
|
|
};
|
|
buildInputs = [ cmake qt4 perl xscreensaver
|
|
kdelibs kdebase_workspace automoc4 phonon strigi eigen ];
|
|
meta = {
|
|
description = "KDE artwork";
|
|
longDescription = "Contains various artwork for KDE such as backgrounds, icons and screensavers";
|
|
license = "LGPL";
|
|
homepage = http://www.kde.org;
|
|
maintainers = [ lib.maintainers.sander ];
|
|
};
|
|
}
|