nixpkgs/pkgs/desktops/kde-4.7/pim-runtime.nix

18 lines
471 B
Nix
Raw Normal View History

{ kde, fetchurl, cmake, kdelibs, qt4, phonon, libxml2, libxslt, boost
, kdepimlibs, automoc4, akonadi, soprano, strigi, shared_mime_info
, shared_desktop_ontologies }:
kde.package rec {
buildInputs =
[ cmake kdelibs qt4 automoc4 phonon kdepimlibs akonadi strigi
soprano boost shared_mime_info shared_desktop_ontologies
libxml2 libxslt
];
meta = {
description = "KDE PIM runtime";
license = "GPL";
kde.name = "kdepim-runtime";
};
}