mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
KDE: PIM: make it actually work if you install it, without having to hunt for missing dependencies
svn path=/nixpkgs/trunk/; revision=23903
This commit is contained in:
parent
716fa88212
commit
80aed14c87
|
@ -157,7 +157,7 @@ pkgs.recurseIntoAttrs (rec {
|
|||
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl boost gpgme libassuan libgpgerror libxslt;
|
||||
inherit (pkgs) shared_mime_info;
|
||||
inherit (pkgs.xlibs) libXScrnSaver;
|
||||
inherit kdelibs kdepimlibs;
|
||||
inherit kdelibs kdepimlibs kdepim_runtime;
|
||||
inherit automoc4 phonon akonadi strigi soprano qca2;
|
||||
};
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, fetchurl, lib, cmake, qt4, perl, boost, gpgme, libassuan, libgpgerror, libxslt
|
||||
, shared_mime_info, libXScrnSaver
|
||||
, kdelibs, kdepimlibs, automoc4, phonon, akonadi, strigi, soprano, qca2}:
|
||||
, kdelibs, kdepimlibs, kdepim_runtime, automoc4, phonon, akonadi, strigi, soprano, qca2}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "kdepim-4.4.5";
|
||||
|
@ -12,7 +12,8 @@ stdenv.mkDerivation {
|
|||
cmakeFlags = "-DBUILD_kleopatra=OFF"; # doesn't build with new boost
|
||||
buildInputs = [ cmake qt4 perl boost gpgme stdenv.gcc.libc libassuan libgpgerror libxslt
|
||||
shared_mime_info libXScrnSaver
|
||||
kdelibs kdepimlibs automoc4 phonon akonadi strigi soprano qca2 ];
|
||||
kdelibs automoc4 phonon akonadi strigi soprano qca2 ];
|
||||
propagatedBuildInputs = [ kdepimlibs kdepim_runtime ];
|
||||
meta = {
|
||||
description = "KDE PIM tools";
|
||||
longDescription = ''
|
||||
|
|
Loading…
Reference in a new issue