Add libcdr (libreoffice dependency)

This commit is contained in:
Yury G. Kudryashov 2012-08-30 00:30:15 +04:00
parent d41c08ee54
commit 34bafa4893
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, fetchurl, libwpg, libwpd, lcms2, pkgconfig }:
stdenv.mkDerivation rec {
name = "libcdr-0.0.8";
src = fetchurl {
url = "http://dev-www.libreoffice.org/src/${name}.tar.xz";
sha256 = "117a8gp29xs3kin6kaisb3frsx8dwrsjgs4wq4y5hjqprzy6lwz0";
};
buildInputs = [ libwpg libwpd lcms2 ];
buildNativeInputs = [ pkgconfig ];
CXXFLAGS="--std=gnu++0x"; # For c++11 constants in lcms2.h
meta = {
description = "A library providing ability to interpret and import Corel Draw drawings into various applications";
homepage = http://www.freedesktop.org/wiki/Software/libcdr;
platforms = stdenv.lib.platforms.all;
};
}

View File

@ -3990,6 +3990,8 @@ let
libcdio = callPackage ../development/libraries/libcdio { };
libcdr = callPackage ../development/libraries/libcdr { };
libchamplain = callPackage ../development/libraries/libchamplain {
inherit (gnome) libsoup;
};