1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/desktops/kde-4.14/kdepimlibs.nix

36 lines
809 B
Nix
Raw Normal View History

2014-09-20 10:09:11 +01:00
{ kde, pkgconfig, boost, cyrus_sasl, gpgme, libical, openldap, prison
2017-02-18 19:39:34 +00:00
, kdelibs, akonadi, libxslt
, shared_mime_info, shared_desktop_ontologies, qjson
, automoc4, cmake_2_8, perl
}:
2014-09-20 10:09:11 +01:00
kde {
outputs = [ "out" "dev" ];
outputInclude = "out";
setOutputFlags = false;
nativeBuildInputs = [ automoc4 cmake_2_8 perl pkgconfig ];
cmakeFlags = [
"-DCMAKE_MINIMUM_REQUIRED_VERSION=3.3"
];
2014-09-20 10:09:11 +01:00
buildInputs =
[ boost gpgme libical libxslt qjson prison
2014-09-20 10:09:11 +01:00
openldap cyrus_sasl akonadi shared_desktop_ontologies
shared_mime_info
2014-09-20 10:09:11 +01:00
];
2017-02-18 19:39:34 +00:00
propagatedBuildInputs = [ kdelibs ];
# Prevent a dependency on boost.dev. FIXME: move this cmake file to .dev.
postInstall = "rm $out/lib/gpgmepp/GpgmeppConfig.cmake";
2014-09-20 10:09:11 +01:00
meta = {
description = "KDE PIM libraries";
license = "LGPL";
};
}