forked from mirrors/nixpkgs
c0d5cd0ff9
The autoconf build system for poppler does not support building the wrappers separately, so this slightly enlarges the size of closures. To compensate, the command-line utilities have been separated into their own package.
41 lines
1.8 KiB
Nix
41 lines
1.8 KiB
Nix
{ stdenv, fetchurl, cmake, kdelibs, attica, perl, zlib, libpng, boost, mesa
|
|
, kdepimlibs, createresources ? null, eigen, qca2, exiv2, soprano, marble, lcms2
|
|
, fontconfig, freetype, sqlite, icu, libwpd, libwpg, pkgconfig, poppler_qt4
|
|
, libkdcraw, libxslt, fftw, glew, gsl, shared_desktop_ontologies, okular
|
|
, libvisio, kactivities, mysql, postgresql, freetds, xbase, openexr, ilmbase
|
|
, libodfgen, opencolorio, openjpeg, pstoedit, librevenge
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "calligra-2.8.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${name}/${name}.tar.xz";
|
|
sha256 = "1d8fx0xn8n8y6jglw8hhpk7kr6kbhsbaxqwqlfzmnzh7x9s8nsxg";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake perl pkgconfig ];
|
|
|
|
# TODO: package Vc, libWPS, Spnav, m2mml, LibEtonyek, poppler-qt4-xpdf-headers
|
|
# not found: xbase, openjpeg(too new)
|
|
|
|
buildInputs = [ kdelibs attica zlib libpng boost mesa kdepimlibs
|
|
createresources eigen qca2 exiv2 soprano marble lcms2 fontconfig freetype
|
|
sqlite icu libwpd libwpg poppler_qt4 libkdcraw libxslt fftw glew gsl
|
|
shared_desktop_ontologies okular libodfgen opencolorio openjpeg
|
|
libvisio kactivities mysql.lib postgresql freetds xbase openexr pstoedit
|
|
librevenge
|
|
];
|
|
|
|
patches = [ ./librevenge.patch ];
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR";
|
|
|
|
meta = {
|
|
description = "Calligra Suite is a set of applications written to help you to accomplish your work. Calligra includes efficient and capable office components: Words for text processing, Sheets for computations, Stage for presentations, Plan for planning, Flow for flowcharts, Kexi for database creation, Krita for painting and raster drawing, and Karbon for vector graphics.";
|
|
homepage = http://calligra.org;
|
|
maintainers = with stdenv.lib.maintainers; [ urkud phreedom ];
|
|
inherit (kdelibs.meta) platforms;
|
|
};
|
|
}
|